-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
{
"name": "dbn-tutorial",
"version": "0.1.0",
"description": "building a simple DBN interpreter",
"main": "dist/bundle.js",
"repository": {
"url": "[email protected]:vyorkin-play/dbn-tutorial.git",
"type": "git"
},
"author": "Vasiliy Yorkin <[email protected]> (https://github.com/vyorkin)",
"license": "WTFPL",
"dependencies": {
"pegjs": "^0.10.0",
"ramda": "^0.22.1",
"sanitize.css": "^4.1.0"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015-rollup": "^1.2.0",
"del-cli": "^0.2.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-fp": "^2.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-promise": "^3.4.0",
"flow-bin": "^0.36.0",
"ghooks": "^1.3.2",
"pegjs-backtrace": "^0.1.1",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-flow": "^1.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-serve": "^0.1.0",
"rollup-plugin-visualizer": "^0.1.5",
"rollup-pluginutils": "^1.5.2",
"rollup-watch": "^2.5.0",
"sinon": "^1.17.6"
},
"scripts": {
"clean": "del dist/*",
"build": "rollup -c",
"start": "rollup -c -w"
}
}