forked from atom/electron-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1013 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
{
"name": "electron-link",
"version": "0.4.2",
"description": "Generates scripts to pass to V8's `mksnapshot` tool.",
"main": "lib/index.js",
"scripts": {
"test": "mocha test/**/*.test.js --ui=tdd --compilers js:babel-register",
"tdd": "electron-mocha test/**/*.test.js --ui=tdd --renderer --interactive --compilers js:babel-register",
"prepublish": "rimraf lib && babel src -d lib"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-register": "^6.23.0",
"dedent": "^0.6.0",
"electron": "^2.0.18",
"electron-mocha": "^3.3.0",
"mocha": "^3.2.0",
"rimraf": "^2.7.1",
"temp": "^0.8.4"
},
"dependencies": {
"acorn": "^6.1.1",
"ast-util": "^0.6.0",
"encoding-down": "^5.0.4",
"indent-string": "^3.2.0",
"leveldown": "^5.4.1",
"levelup": "~3.0.0",
"recast": "^0.17.6",
"resolve": "^1.13.1",
"source-map": "^0.5.6"
}
}