This repository has been archived by the owner on Mar 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "taskcluster-client-web",
"version": "8.1.0",
"main": "build/index.js",
"author": "Eli Perelman <[email protected]>",
"license": "MPL-2.0",
"repository": "taskcluster/taskcluster-client-web",
"files": [
"src",
"build"
],
"scripts": {
"build": "neutrino build --require dotenv/config",
"docs": "rm -f docs/* && node -r dotenv/config bin/generate-docs",
"compile-clients": "rm -f src/clients/* && node -r dotenv/config bin/compile-clients && yarn lint --fix",
"lint": "neutrino lint",
"list-clients": "node -r dotenv/config bin/list-clients",
"precommit": "neutrino stage",
"prepare": "yarn build",
"show-client": "node -r dotenv/config bin/show-client",
"test": "neutrino test --require dotenv/config",
"update-all": "yarn compile-clients && yarn build && yarn docs"
},
"devDependencies": {
"@neutrinojs/karma": "^8.2.3",
"@neutrinojs/library": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cliff": "^0.1.10",
"common-tags": "^1.4.0",
"dotenv": "^6.0.0",
"ejs": "^2.5.7",
"got": "^8.3.1",
"javascript-stringify": "^1.6.0",
"json-schema-to-markdown": "^1.0.3",
"json-stable-stringify": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"neutrino": "^8.2.3",
"neutrino-preset-mozilla-frontend-infra": "^4.1.0",
"object.omit": "^3.0.0"
},
"dependencies": {
"hawk": "^7.0.7",
"query-string": "^6.1.0",
"taskcluster-lib-urls": "^10.0.0"
}
}