-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 913 Bytes
/
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
{
"name": "build_chromium",
"version": "0.0.11",
"description": "Build and package Chromium toolchain.",
"main": "index.js",
"scripts": {
"linter": "node tools/linter.js"
},
"bin": "./bin/build_chromium",
"pre-commit": [
"linter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/halton/build_chromium.git"
},
"keywords": [
"Chrome"
],
"author": "Halton Huo <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/halton/build_chromium/issues"
},
"homepage": "https://github.com/halton/build_chromium#readme",
"dependencies": {
"commander": "^2.15.0",
"rimraf": "^2.6.2",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"eslint": "^4.18.2",
"eslint-config-google": "^0.9.1",
"eslint-plugin-header": "^1.2.0",
"pre-commit": "^1.2.2",
"recursive-readdir": "^2.2.2"
}
}