-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "optimize-js-plugin",
"version": "0.0.4",
"description": "webpack plugin to optimize initial JavaScript execution/parsing by wrapping eager functions",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"test": "mocha --compilers js:babel-core/register",
"lint": "eslint src/ test/"
},
"keywords": [
"optimize",
"js",
"webpack",
"webpack-plugin"
],
"author": "Vignesh Shanmugam <vignesh.shanmugam22@gmail.com> (https://vigneshh.in)",
"repository": {
"type": "git",
"url": "git+https://github.com/vigneshshanmugam/optimize-js-plugin.git"
},
"bugs": {
"url": "https://github.com/vigneshshanmugam/optimize-js-plugin/issues"
},
"homepage": "https://github.com/vigneshshanmugam/optimize-js-plugin#readme",
"license": "MIT",
"dependencies": {
"optimize-js": "^1.0.0",
"webpack-sources": "^0.1.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.5.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.4",
"webpack": "^1.13.2"
}
}