forked from defconcepts/revue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "revue",
"version": "3.0.0",
"description": "Redux binding for Vue.",
"main": "dist/revue.common.js",
"files": "dist",
"scripts": {
"test": "BABEL_ENV=test mocha --compilers js:babel-register --require should test.js --recursive && npm run build",
"build": "bili --format cjs --format umd --compress --module-name Revue",
"build:cjs": "bili --format cjs",
"example": "vbuild -d",
"build:example": "vbuild",
"deploy": "npm run build:example && surge -p dist-example -d revue.surge.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egoist/revue.git"
},
"author": "EGOIST <0x142857@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/egoist/revue/issues"
},
"homepage": "https://github.com/egoist/revue#readme",
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"bili": "^0.10.0",
"jsdom": "^7.1.0",
"mocha": "^2.3.4",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"should": "^7.1.1",
"style-loader": "^0.13.0",
"vbuild": "^4.3.4",
"vue": "^2.1.6",
"vue-loader": "^10.0.2",
"vue-router": "^2.1.1",
"vue-template-compiler": "^2.1.6"
},
"dependencies": {
"dot-prop": "^4.1.0"
}
}