forked from electrode-io/electrode-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.94 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ern-platform",
"version": "1000.0.0",
"private": true,
"description": "",
"scripts": {
"build": "lerna run build",
"build:instrument": "yarn build && yarn instrument",
"check": "yarn check:lint && yarn check:yarnlock",
"check:lint": "tslint -c tslint.json '**/src/**/*.ts' '**/test/**/*.ts' -e '**/node_modules/**'",
"check:regen-fixtures": "node regen-fixtures-check",
"check:yarnlock": "node yarn-lock-check",
"coverage": "yarn coverage:unit && yarn coverage:system:noclean",
"coverage:local": "yarn coverage:unit && yarn coverage:system",
"coverage:system": "yarn build:instrument && nyc --nycrc-path .nycrc.system node system-tests/src/system-tests",
"coverage:system:noclean": "yarn build:instrument && nyc --nycrc-path .nycrc.system --no-clean node system-tests/src/system-tests",
"coverage:unit": "nyc --nycrc-path .nycrc.unit yarn test:unit",
"coverage:upload": "nyc report --reporter=text-lcov | coveralls",
"ern-debug": "node --nolazy --inspect-brk=5858 ern-local-cli/src/index.dev.js",
"instrument": "lerna run instrument",
"prettier:check": "prettier --check '{system-tests/src,global-cli,ern-*}/**/@(*.ts|*.js|*.json)'",
"prettier:staged": "pretty-quick --staged",
"prettier:write": "prettier --write '{system-tests/src,global-cli,ern-*}/**/@(*.ts|*.js|*.json)'",
"rebuild": "lerna clean --yes && yarn && yarn build",
"regen-fixtures": "node system-tests/src/regen-fixtures",
"setup-dev": "node setup-dev.js",
"test": "yarn test:unit && yarn test:system",
"test:system": "yarn build && lerna run instrument && node system-tests/src/system-tests",
"test:unit": "lerna run test --no-bail"
},
"repository": {
"type": "git",
"url": "https://github.com/electrode-io/electrode-native.git"
},
"keywords": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/electrode-io/electrode-native/issues"
},
"homepage": "http://www.electrode.io",
"dependencies": {
"@types/node": "^12.20.12",
"chalk": "^4.1.1",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/archiver": "^5.1.0",
"@types/chai": "^4.2.18",
"@types/cli-table": "^0.3.0",
"@types/cross-spawn": "^6.0.2",
"@types/fast-levenshtein": "^0.0.1",
"@types/fs-extra": "^9.0.11",
"@types/fs-readdir-recursive": "^1.0.0",
"@types/get-folder-size": "^2.0.0",
"@types/glob": "^7.1.3",
"@types/got": "^9.6.11",
"@types/hapi__joi": "^17.1.6",
"@types/inquirer": "^7.3.1",
"@types/js-beautify": "^1.13.1",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.169",
"@types/mocha": "^8.2.2",
"@types/mustache": "^4.1.1",
"@types/node-fetch": "^2.5.10",
"@types/semver": "^7.3.5",
"@types/shelljs": "^0.8.8",
"@types/sinon": "^10.0.0",
"@types/tmp": "^0.2.0",
"@types/treeify": "^1.0.0",
"@types/tunnel": "^0.0.2",
"@types/uuid": "^8.3.0",
"@types/validate-npm-package-name": "^3.0.2",
"@types/yargs": "^16.0.1",
"@types/yarnpkg__lockfile": "^1.1.4",
"@types/yauzl": "^2.9.1",
"@types/yazl": "^2.4.2",
"@yarnpkg/lockfile": "^1.1.0",
"chai": "^4.3.4",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"diff": "^5.0.0",
"dir-compare": "^3.2.0",
"dirty-chai": "^2.0.1",
"fs-readdir-recursive": "^1.1.0",
"inquirer": "^8.0.0",
"install": "^0.13.0",
"jsonpath": "^1.1.1",
"lerna": "^4.0.0",
"mocha": "^8.4.0",
"mock-fs": "^5.1.1",
"nock": "^13.0.11",
"nyc": "^15.1.0",
"prettier": "2.3.0",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"sinon": "10.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=12"
},
"workspaces": [
"ern-*"
]
}