Initial Implementation of Node prelaunch
[platform/framework/web/crosswalk-tizen.git] / package.json
1 {
2   "name": "electron",
3   "version": "1.6.7",
4   "devDependencies": {
5     "asar": "^0.11.0",
6     "browserify": "^13.1.0",
7     "electabul": "~0.0.4",
8     "electron-docs-linter": "^2.1.0",
9     "request": "*",
10     "standard": "^8.4.0",
11     "standard-markdown": "^2.1.1"
12   },
13   "optionalDependencies": {
14     "runas": "^3.0.0"
15   },
16   "standard": {
17     "ignore": [
18       "/out",
19       "/spec",
20       "/vendor"
21     ],
22     "env": {
23       "browser": true
24     }
25   },
26   "private": true,
27   "scripts": {
28     "bootstrap": "python ./script/bootstrap.py",
29     "browserify": "browserify",
30     "bump-version": "./script/bump-version.py",
31     "build": "python ./script/build.py -c D",
32     "clean": "python ./script/clean.py",
33     "clean-build": "python ./script/clean.py --build",
34     "coverage": "npm run instrument-code-coverage && npm test -- --use-instrumented-asar",
35     "instrument-code-coverage": "electabul instrument --input-path ./lib --output-path ./out/coverage/electron.asar",
36     "lint": "npm run lint-js && npm run lint-cpp && npm run lint-py && npm run lint-api-docs-js && npm run lint-api-docs",
37     "lint-js": "standard && cd spec && standard",
38     "lint-cpp": "python ./script/cpplint.py",
39     "lint-py": "python ./script/pylint.py",
40     "lint-api-docs-js": "standard-markdown docs && standard-markdown docs-translations",
41     "lint-api-docs": "electron-docs-linter",
42     "preinstall": "node -e 'process.exit(0)'",
43     "release": "./script/upload.py -p",
44     "repl": "python ./script/start.py --interactive",
45     "start": "python ./script/start.py",
46     "test": "python ./script/test.py"
47   }
48 }