-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.46 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@lite-js/torch",
"version": "0.2.6",
"description": "test framework to light up the world",
"main": "index.js",
"bin": {
"torch-coverage": "./bin/coverage.js",
"torch": "./bin/torch.js"
},
"scripts": {
"lint": "standard",
"lint-fix": "standard --fix",
"test": "node bin/torch test/main && node bin/torch --compile --renderer --notify-on-fail test/renderer",
"test-live": "node bin/torch --compile --interactive test/renderer"
},
"pre-commit": {
"run": [
"lint",
"test"
],
"silent": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/lite-js/torch.git"
},
"keywords": [
"torch",
"electron",
"mocha",
"test",
"framework"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lite-js/torch/issues"
},
"homepage": "https://github.com/lite-js/torch#readme",
"dependencies": {
"babel-core": "^6.25.0",
"babel-register": "^6.24.1",
"chokidar": "^1.7.0",
"commander": "^2.9.0",
"electron": "~1.6.11",
"glob": "^7.1.2",
"is-electron-renderer": "^2.0.1",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"mocha": "^3.4.2",
"node-notifier": "^5.1.2",
"source-map-support": "^0.4.15",
"which": "^1.2.14"
},
"devDependencies": {
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"pre-commit": "^1.2.2",
"standard": "^10.0.2"
}
}