forked from gaoding-inc/v-model
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.48 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
{
"name": "v-model",
"version": "0.0.8",
"description": "V-Model is a model plugin for Vue.js, like ng-resource.",
"main": "index.js",
"scripts": {
"build": "rimraf lib && babel src --out-dir lib",
"prebuild": "npm run lint",
"postbuild": "npm test",
"lint": "eslint src",
"test": "mocha"
},
"files": [
"README.md",
"index.*",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/laoshu133/v-model.git"
},
"keywords": [
"v-model",
"vue-model",
"vue",
"resource"
],
"author": "xiaomi",
"license": "MIT",
"bugs": {
"url": "https://github.com/laoshu133/v-model/issues"
},
"homepage": "https://github.com/laoshu133/v-model#readme",
"dependencies": {
"axios": "^0.15.3",
"bluebird": "^3.5.0",
"path-to-regexp": "^1.7.0"
},
"peerDependencies": {
"vue": ">1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"chai": "^3.5.0",
"eslint": "^3.12.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.2.0",
"nock": "^9.0.2",
"rimraf": "^2.5.4",
"vue": "^2.1.4"
}
}