forked from electrode-io/electrode-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.59 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.59 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
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
{
"name": "ern-platform",
"version": "1000.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "Apache-2.0",
"scripts": {
"check": "yarn check:lint && yarn check:yarnlock",
"check:lint": "tslint -c tslint.json '**/src/**/*.ts' '**/test/**/*.ts' -e '**/node_modules/**'",
"check:yarnlock": "node yarn-lock-check",
"coverage": "yarn coverage:unit && yarn coverage:system",
"coverage:ci": "yarn coverage:unit && yarn coverage:system && yarn istanbul report --include=**/.coverage/coverage-final.json text-lcov | coveralls",
"coverage:system": "rimraf .nyc_output && node system-tests/system-tests-coverage",
"coverage:unit": "rimraf ern-*/.nyc_output && lerna run coverage && yarn istanbul report --include=ern-*/.coverage/coverage-final.json html",
"ern-debug": "node --nolazy --inspect-brk=5858 ern-local-cli/src/index.dev.js",
"istanbul": "istanbul",
"postmerge": "node auto-rebuild.js",
"precommit": "yarn check:yarnlock && yarn check:lint && yarn prettier",
"prettier": "pretty-quick --staged",
"rebuild": "lerna clean --yes && lerna bootstrap && lerna run build",
"regen-fixtures": "node system-tests/regen-fixtures",
"setup-dev": "node setup-dev.js",
"test": "yarn test:unit && yarn test:system",
"test:system": "node system-tests/system-tests",
"test:unit": "lerna run test"
},
"workspaces": [
"./ern-*"
],
"dependencies": {
"@types/node": "^9.6.7",
"chalk": "^2.4.1",
"shelljs": "^0.8.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@yarnpkg/lockfile": "^1.0.1",
"chai": "^4.1.2",
"colors": "^1.3.0",
"coveralls": "^3.0.1",
"diff": "^3.5.0",
"dir-compare": "^1.4.0",
"dirty-chai": "^2.0.1",
"husky": "^0.14.3",
"inquirer": "^5.2.0",
"install": "^0.11.0",
"istanbul": "^0.4.5",
"jsonpath": "^1.0.0",
"lerna": "2.11.0",
"mocha": "^5.2.0",
"mock-fs": "^4.5.0",
"npm": "^4.4.1",
"nyc": "^11.7.1",
"prettier": "1.13.4",
"pretty-quick": "^1.6.0",
"rimraf": "^2.6.2",
"sinon": "5.0.10",
"source-map-support": "^0.5.6",
"ts-node": "^6.0.5",
"tsconfig-paths": "^3.3.2",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^2.9.1"
},
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/electrode-io/electrode-native/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode-native.git"
},
"homepage": "http://www.electrode.io"
}