-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "revuejs",
"version": "1.0.1",
"description": "A tiny, light and handy state management for vuejs 2",
"author": "pomysky@gmail.com",
"main": "dist/index.js",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/dwqs/revuejs"
},
"keywords": [
"vue",
"vuejs2",
"modules",
"state-management"
],
"scripts": {
"test": "./node_modules/.bin/ava ./test/**/*.js",
"dev": "node ./examples/dev-server.js",
"prepush": "npm run ilint -q",
"prepublishOnly": "npm run build",
"build": "npx rollup -c",
"ilint": "npx eslint src/**/*.js",
"fix": "npx eslint --fix src/**/*.js"
},
"dependencies": {},
"devDependencies": {
"async-await-error-handling": "^0.5.2",
"ava": "^0.22.0",
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.2",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"open-browser-webpack-plugin": "^0.0.5",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-cleanup": "^1.0.1",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"vue": "^2.4.2",
"vue-loader": "^13.0.0",
"vue-router": "^2.7.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"homepage": "https://github.com/dwqs/revuejs",
"bugs": {
"url": "https://github.com/dwqs/revuejs/issues"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 5.2.0"
}
}