-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "virtual-module-webpack-plugin",
"version": "0.4.1",
"author": "Rob Marscher @rmarscher",
"description": "Adds the contents of a virtual file to webpack's cached file system without writing it to disk",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rmarscher/virtual-module-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin"
],
"bugs": {
"url": "https://github.com/rmarscher/virtual-module-webpack-plugin/issues"
},
"homepage": "https://github.com/rmarscher/virtual-module-webpack-plugin",
"license": "MIT",
"scripts": {
"fix": "npm run lint -- --fix",
"lint": "eslint . ./",
"publish-patch": "npm run test && npm version patch && git push && git push --tags && npm publish",
"test": "tap test/unit/*.* test/integration/*.* --coverage"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"css-loader": "^0.26.1",
"enhanced-resolve": "^3.0.3",
"eslint": "^3.11.1",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "v2.0.0-beta.5",
"json-loader": "^0.5.4",
"raw-loader": "^0.5.1",
"style-loader": "^0.13.1",
"tap": "^8.0.1",
"webpack": "^2.2.0"
},
"config": {
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
}
}