forked from PolymerLabs/arcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.2 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
{
"name": "arcs",
"version": "0.0.0",
"private": true,
"config": {
"port": "8080",
"host": "localhost"
},
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"scripts": {
"prepare": "cross-env tools/sigh check && cd devtools && npm install",
"start": "cross-env http-server --silent -a ${npm_package_config_host} -p ${npm_package_config_port}",
"test-with-start": "run-p --print-name --race start test",
"test": "run-s --print-name --continue-on-error test-no-web test-wdio",
"test-no-web": "run-s --print-name --continue-on-error test-sigh test-mocha-words test-extension",
"test-sigh": "cross-env tools/sigh",
"test-extension": "mocha-chrome extension/test/index.test.html",
"test-mocha-words": "mocha-chrome artifacts/Words/test/index.test.html",
"test-wdio": "cross-env wdio -b http://${npm_package_config_host}:${npm_package_config_port}/ shell/test/wdio.conf.js",
"build:rollup": "rollup -c --sourcemap",
"build:typedoc": "typedoc --mode file --target ES5 --downLevelIteration -out dist/apidocs",
"server": "npm install && ./tools/sigh && npm run build:rollup && npm --prefix server install --no-package-lock && npm --prefix server install --package-lock-only && npm --prefix server run test",
"server:start": "npm --prefix server start"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"chokidar": "^2.0.4",
"chromedriver": "^2.43.1",
"clang-format": "^1.2.4",
"cross-env": "^5.2.0",
"eslint": "^5.8.0",
"eslint-config-google": "^0.11.0",
"grammkit": "0.6.2",
"http-server": "^0.11.1",
"minimist": "^1.2.0",
"mocha": "^5.2.0",
"mocha-chrome": "^1.1.0",
"node-webcrypto-ossl": "^1.0.37",
"npm-run-all": "^4.1.3",
"pegjs": "^0.10.0",
"request": "^2.88.0",
"rollup": "^0.67.0",
"rollup-plugin-ignore": "^1.0.4",
"rollup-plugin-multi-entry": "^2.0.2",
"rollup-plugin-node-resolve": "^3.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"wdio-chromedriver-service": "^0.1.3",
"wdio-errorshot-reporter": "^0.2.1",
"wdio-mocha-framework": "^0.6.4",
"wdio-spec-reporter": "^0.1.5",
"webdriverio": "^4.14.0",
"webpack": "^4.25.1"
},
"dependencies": {
"@types/pouchdb": "^6.3.2",
"@types/node": "^10.12.2",
"assert": "^1.4.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"esm": "^3.0.84",
"firebase": "^5.5.7",
"idb": "^2.1.3",
"jsrsasign": "^8.0.12",
"jsrsasign-util": "^1.0.0",
"node-fetch": "^1.7.2",
"pouchdb": "^7.0.0",
"pouchdb-adapter-memory": "^7.0.0",
"prettier": "^1.14.3",
"source-map-support": "^0.5.9",
"sourcemapped-stacktrace": "^1.1.9",
"typescript": "^3.1.6",
"ws": "^4.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PolymerLabs/arcs.git"
},
"author": "The Polymer Project Authors",
"license": "BSD-3-Clause",
"homepage": "https://github.com/PolymerLabs/arcs",
"bugs": {
"url": "https://github.com/PolymerLabs/arcs/issues"
},
"engines": {
"node": ">= 10.0.0",
"npm": ">= 6.4.0"
},
"greenkeeper": {
"ignore": [
"node-fetch",
"ws"
]
}
}