-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "jasonette-webpack-plugin",
"main": "dist/index.js",
"version": "0.0.3",
"author": "Brad Pitcher @brad",
"description": "Outputs JSON usable with Jasonette",
"engines": {
"node": ">=4.3.0 < 5.0.0 || >= 5.10"
},
"peerDependencies": {
"webpack": "^2.2.0"
},
"dependencies": {
"axis.js": "^1.2.1",
"uglify-js": "^2.8.22"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-istanbul": "^0.12.2",
"babel-loader": "^6.4.1",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.1.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"standard-version": "^4.0.0",
"timekeeper": "^1.0.0",
"webpack": "^2.2.0"
},
"homepage": "https://github.com/brad/jasonette-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/brad/jasonette-webpack-plugin.git"
},
"license": "MIT",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"cover": "nyc --require babel-register mocha",
"release": "standard-version",
"build": "babel -d dist src",
"prepublishOnly": "npm run build"
}
}