-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "premonish",
"version": "1.0.4",
"description": "Predict which DOM element a user will interact with next.",
"main": "lib/index.js",
"scripts": {
"example": "budo examples/debug.js --live -o -- -t [ babelify --presets [ es2015 ] ] -t browserify-css",
"build": "babel src --out-dir lib",
"build-gh-pages": "browserify examples/debug.js -t [ babelify --presets [ es2015 ] ] -t browserify-css | indexhtmlify | metadataify --title \"premonish\" > ../gh-pages/premonish/index.html",
"test": "semistandard src/** test/** && mocha --compilers js:babel-core/register",
"syntax-fix": "semistandard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mathisonian/premonish.git"
},
"keywords": [
"prediction",
"optimization",
"preload"
],
"author": "Matthew Conlen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathisonian/premonish/issues"
},
"homepage": "https://github.com/mathisonian/premonish#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify-css": "^0.9.2",
"budo": "^9.2.2",
"d3-selection": "^1.0.3",
"d3-transition": "^1.0.3",
"expect": "^1.20.2",
"indexhtmlify": "^1.3.1",
"metadataify": "^1.0.2",
"mocha": "^3.2.0",
"semistandard": "^9.1.0"
},
"dependencies": {
"curve-store": "^1.1.2",
"d3-voronoi": "^1.1.0",
"raf": "^3.3.0"
}
}