-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.74 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.74 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
{
"name": "trace",
"version": "0.1.0",
"description": "A visual programming language for Arduino-like platforms.",
"main": "index.js",
"scripts": {
"test": "node ./node_modules/karma/bin/karma start karma.conf.js && node node_modules/mocha/bin/mocha test/src --recursive && pytest",
"lint-js": "node node_modules/eslint/bin/eslint.js .",
"lint-js-fix": "node node_modules/eslint/bin/eslint.js --fix .",
"lint-py": "pep8 --max-line-length=100 transpile",
"start": "gulp start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RPI-Void-Star/trace.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/RPI-Void-Star/trace/issues"
},
"homepage": "https://github.com/RPI-Void-Star/trace#readme",
"devDependencies": {
"chai": "^3.5.0",
"electron": "^1.4.3",
"electron-builder": "^7.13.0",
"eslint": "^3.8.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.3.0",
"fs-jetpack": "^0.9.2",
"gulp": "^3.9.1",
"gulp-batch": "^1.0.5",
"gulp-less": "^3.1.0",
"gulp-plumber": "^1.1.0",
"gulp-watch": "^4.3.10",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-electron": "^5.1.1",
"karma-mocha": "^1.2.0",
"mocha": "^3.1.2",
"rollup": "^0.36.3",
"yargs": "^6.1.1"
},
"peerDependencies": {
"chai": "^3.5.0",
"eslint": "^3.8.0",
"eslint-plugin-import": "^1.16.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0"
}
}