-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·75 lines (75 loc) · 1.76 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
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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "acsg",
"version": "0.4.2",
"description": "Run an adversarial collective-sensing game",
"main": "acsg.js",
"scripts": {
"test": "jest",
"start": "watchify demo.js -o bundle.js -dv",
"bundle": "browserify demo.js -o bundle.js",
"dist": "browserify acsg.js --standalone acsg -o acsg-dist.js",
"lint": "eslint ."
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dallinger/ACSG.git"
},
"keywords": [
"game",
"collective sensing"
],
"author": "suchow",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dallinger/ACSG/issues"
},
"homepage": "https://github.com/Dallinger/ACSG",
"dependencies": {
"dom-css": "^2.1.0",
"flatten": "^1.0.2",
"gaussian": "^1.1.0",
"is-array": "^1.0.1",
"is-number": "^2.1.0",
"is-string": "^1.0.4",
"mouse-position": "^2.1.0",
"mousetrap": "^1.6.2",
"parse-color": "^1.0.0",
"perf_hooks": "0.0.1",
"rands": "^1.0.0",
"regl": "^0.11.0",
"seedrandom": "^2.4.4",
"uuid": "^3.3.2",
"watchify": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-html": "^5.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"rewire": "^4.0.1"
}
}