-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "@seracio/dthree",
"version": "1.1.0",
"main": "dist/dthree.js",
"module": "dist/dthree.es6.js",
"repository": "https://github.com/seracio/dthree.git",
"author": "nmondon <nicolasmondon@gmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.19.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"buble": "^0.15.2",
"flow-bin": "^0.45.0",
"rollup": "^0.41.6",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0"
},
"scripts": {
"test": "./node_modules/.bin/ava",
"build": "./node_modules/.bin/rollup --config rollup.config.js"
},
"ava": {
"require": [
"babel-register"
]
},
"babel": {
"plugins": [
"transform-flow-strip-types"
],
"presets": [
"@ava/stage-4",
"stage-2"
]
},
"dependencies": {
"iterall": "^1.1.1"
}
}