forked from savjs/sav-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "sav-flux",
"version": "0.0.30",
"description": "flux for savjs",
"main": "dist/sav-flux.cjs.js",
"module": "dist/sav-flux.es.js",
"jsnext:main": "dist/sav-flux.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard rollup.config.js test/** src/**",
"start": "watch -p \"+(test|src)/*.js\" -c \"npm run lint -- --fix && npm run build && nyc ava ./test\"",
"test": "npm run lint && npm run build && nyc ava ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savjs/sav-flux.git"
},
"author": {
"name": "jetiny",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/savjs/sav-flux/issues"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"eslint-plugin-standard": "^2.0.1",
"nyc": "^10.0.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"standard": "^8.5.0",
"vue": "^2.4.2",
"watch-cli": "^0.2.1"
},
"ava": {
"require": "babel-register",
"babel": "inherit"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
]
},
"homepage": "https://github.com/savjs/sav-flux#readme",
"dependencies": {
"sav-util": "^1.0.33"
}
}