-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "design-patterns",
"version": "1.0.0",
"description": "Lessons from my workshop about design patterns",
"main": "",
"scripts": {
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text npm run mocha",
"mocha": "mocha -G -c -r ./node_modules/expect.js/index.js --compilers js:babel-core/register --recursive test --bail -R progress --ignore-leaks",
"build": "babel src -d build",
"watch:src": "onchange \"src/**/*.{js}\" -p 10 -- npm-run-all -s build mocha",
"watch:test": "onchange \"test/**/*.{js}\" -p 10 -- npm run mocha",
"server": "http-server -p 4001",
"start": "npm-run-all -p watch:src watch:test"
},
"nyc": {
"sourceMap": false,
"instrument": false
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardojmatos/workshop-design-patterns.git"
},
"keywords": [
"design patterns",
"patterns",
"javascript"
],
"author": "Eduardo Matos <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eduardojmatos/workshop-design-patterns/issues"
},
"homepage": "https://github.com/eduardojmatos/workshop-design-patterns#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.1.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-preset-airbnb": "^2.2.3",
"babel-register": "^6.24.0",
"codeclimate-test-reporter": "^0.4.1",
"cross-env": "^4.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"expect.js": "^0.3.1",
"http-server": "^0.11.1",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "^13.0.0",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.2",
"nyc": "^10.2.0",
"onchange": "^3.2.1",
"sinon": "^2.1.0"
}
}