forked from tracespace/tracespace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "tracespace",
"private": true,
"scripts": {
"_test": "mocha --timeout=5000 'packages/**/*test.js'",
"test": "cross-env INTEGRATION=1 nyc npm run _test",
"posttest": "npm run example && npm run docs && npm run lint",
"test:watch": "npm run _test -- --watch --reporter=dot",
"test:browser": "karma start",
"coverage": "nyc report --reporter=lcov",
"integration:server": "lerna run integration:server --parallel",
"lint": "eslint '.*.js' '**/*.js'",
"format": "prettier --ignore-path .eslintignore --write '.*.js' '**/*.js'",
"docs": "lerna run docs",
"example": "lerna run example",
"prebump": "npm run test",
"bump": "lerna version",
"ci:script": "npm run test",
"ci:after-success": "npm run coverage && codecov",
"ci:publish": "lerna publish from-git --yes --npm-tag $npm_package_config_publishTag"
},
"config": {
"publishTag": "next",
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"all": true,
"include": [
"packages/**"
],
"exclude": [
"**/node_modules/**",
"**/example/**",
"**/integration/**",
"**/test.js",
"**/test/**",
"packages/fixtures/**"
]
},
"devDependencies": {
"browserify": "^16.2.2",
"chai": "^4.1.2",
"codecov": "^3.1.0",
"concat-stream": "^1.6.2",
"cross-env": "^5.1.4",
"cz-conventional-changelog": "^2.1.0",
"debug": "^4.1.0",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.2",
"karma": "^3.1.1",
"karma-browserify": "^5.1.3",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"lerna": "^3.6.0",
"lodash": "^4.17.10",
"mocha": "^5.0.0",
"nyc": "^13.1.0",
"pify": "^4.0.1",
"prettier": "^1.14.3",
"proxyquire": "^2.0.1",
"proxyquire-universal": "^1.0.8",
"proxyquireify": "^3.2.1",
"pump": "^3.0.0",
"run-parallel": "^1.1.6",
"run-waterfall": "^1.1.3",
"semver": "^5.6.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"snap-shot-it": "^6.2.2",
"testdouble": "^3.3.1",
"to-readable-stream": "^1.0.0",
"watchify": "^3.10.0",
"xml-formatter": "^1.0.1"
},
"dependencies": {
"@tracespace/cli": "file:packages/cli",
"@tracespace/fixtures": "file:packages/fixtures",
"@tracespace/xml-id": "file:packages/xml-id",
"gerber-parser": "file:packages/gerber-parser",
"gerber-plotter": "file:packages/gerber-plotter",
"gerber-to-svg": "file:packages/gerber-to-svg",
"pcb-stackup": "file:packages/pcb-stackup",
"pcb-stackup-core": "file:packages/pcb-stackup-core",
"whats-that-gerber": "file:packages/whats-that-gerber"
}
}