-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 1.07 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
{
"name": "tscpe",
"version": "0.0.1",
"description": "",
"main": "bin/index.js",
"scripts": {
"start": "./node_modules/electron-prebuilt/dist/electron bin/index.js",
"trace": "./node_modules/electron-prebuilt/dist/electron --no-sandbox --js-flags=\"--trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces\" bin/index.js",
"test": "ELECTRON_PATH=./node_modules/electron-prebuilt/dist/electron electron-mocha -s 1 ./bin/tests",
"test-trace": "ELECTRON_PATH=./node_modules/electron-prebuilt/dist/electron electron-mocha --no-sandbox --js-flags=\"--trace-hydrogen --trace-phase=Z --trace-deopt --code-comments --hydrogen-track-positions --redirect-code-traces\" -s 1 ./bin/tests",
"watch": "tsc --watch"
},
"author": "Phil Lehmkuhl",
"license": "GPL-3.0",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
},
"dependencies": {
"electron-prebuilt": "^0.37.8",
"eventemitter3": "^1.2.0",
"lodash": "^4.11.2",
"source-map-support": "^0.4.0",
"winston": "^2.2.0"
}
}