-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 KB
/
package.json
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "udemy-js-tdd",
"version": "1.0.0",
"description": "Our course lib JS com TDD na prática",
"main": "src/index.js",
"scripts": {
"clear": "rimraf lib",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "npm run test -- --watch",
"test:coverage": "nyc npm test",
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run lint && npm run test:coverage",
"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",
"watch": "npm run build -- --watch",
"serve": "./node_modules/.bin/webpack-dev-server --inline --open"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
],
"check-coverage": true,
"functions": 80,
"lines": 80
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianlemess/js-tdd-course.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Adrian Lemes <adrianlemess@gmail.com> (http://adrianlemess.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianlemess/js-tdd-course/issues"
},
"homepage": "https://github.com/adrianlemess/js-tdd-course#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-es2017": "^7.0.0-beta.37",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"rimraf": "^2.6.2",
"sinon": "^4.2.1",
"sinon-chai": "^2.14.0",
"sinon-stub-promise": "^4.0.0",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"node-fetch": "^1.7.3",
"ramda": "^0.25.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
}
}