-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.58 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
{
"name": "pragmatic-programmer-and-clean-code",
"version": "0.1.0",
"description": "Principles from Pragmatic Programmer and Clean Code",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dry:test": "ava --verbose dry/program.test.js",
"dry:test:solution": "ava --verbose dry/solution/program.test.js",
"dry:test:solution:debug": "npm run ava:debug dry/solution/program.test.js",
"ava:debug": "node --inspect node_modules/ava/profile.js",
"solid:srp:test": "ava --verbose solid/srp/program.test.js",
"postsolid:srp:test": "rimraf solid/srp/soldiers.json",
"solid:srp:test:solution": "tape solid/solution/srp/program.test.js",
"solid:ocp:test:solution": "tape solid/ocp/program.test.js",
"solid:lsp:test:solution1": "ava --verbose solid/lsp/program.test.js",
"solid:lsp:test:solution2": "ava --verbose solid/solution/lsp/program.test.js",
"solid:isp:test": "tape solid/isp/program.test.js",
"solid:dip:test": "ava --verbose solid/dip/Repository.test.js",
"lod:test": "tape lod/LawOfDemeter.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbelmont/pragmatic-programmer-and-clean-code.git"
},
"keywords": [
"Clean",
"Code",
"Solid",
"DRY",
"YAGNI",
"Pragmatic",
"Programmer"
],
"author": "Jean-Marcel Belmont",
"license": "MIT",
"bugs": {
"url": "https://github.com/jbelmont/pragmatic-programmer-and-clean-code/issues"
},
"homepage": "https://github.com/jbelmont/pragmatic-programmer-and-clean-code#readme",
"dependencies": {
"cross-env": "^3.1.3",
"dotenv": "^2.0.0",
"nano": "^6.2.0",
"winston": "^2.3.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"gitbook-cli": "^2.3.0",
"nock": "^9.0.2",
"nyc": "^10.0.0",
"proxyquire": "^1.7.10",
"rimraf": "^2.5.4",
"shelljs": "^0.7.5",
"sinon": "^2.0.0-pre.5",
"supertest": "^2.0.1",
"tap-nyan": "^1.1.0",
"tape": "^4.6.3",
"testdouble": "^1.10.2"
}
}