-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 925 Bytes
/
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
{
"name": "vdt-loader",
"version": "1.5.1",
"description": "A loader of vdt for webpack.",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"release": "npm run release-patch",
"release-patch": "git checkout master && npm version patch && git push origin master --tags && npm publish",
"release-minor": "git checkout master && npm version minor && git push origin master --tags && npm publish",
"release-major": "git checkout master && npm version major && git push origin master --tags && npm publish"
},
"author": "jiawei23716@sina.com",
"license": "ISC",
"dependencies": {
"loader-utils": "^1.1.0",
"source-map": "^0.7.3"
},
"peerDependencies": {
"vdt": "*"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"intact": "git+https://github.com/Javey/Intact.git",
"mocha": "^3.4.2",
"webpack": "^2.7.0"
}
}