-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "Spotify_wrapper",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "./node_modules/.bin/babel --out-dir lib src",
"build:watch": "npm run build -- --watch",
"build:umd": "./node_modules/.bin/webpack --output-filename spotify-wrapper.umd.js",
"build:umd:min": "./node_modules/.bin/webpack --output-filename spotify-wrapper.umd.min.js -p",
"build:all": "npm run build && npm run build:umd && npm run build:umd:min",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test"
},
"nyc": {
"exclude": [
"tests/**"
]
},
"keywords": [
"js",
"tdd"
],
"author": "Matheus de Lima Gomes <lima.eca@gmail.com> (https://github.com/matheus-lima92)",
"license": "MIT",
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.3.2",
"babel-register": "^6.24.0",
"chai": "^4.1.2",
"husky": "^0.14.3",
"mocha": "^5.0.5",
"node-fetch": "^2.1.2",
"nyc": "^11.6.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"sinon-stub-promise": "^4.0.0",
"webpack": "^2.4.1",
"webpack-cli": "^2.0.14"
}
}