forked from plasticine/inject-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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": "inject-loader",
"version": "3.0.0",
"description": "A Webpack loader for injecting code into modules via their dependencies",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config config/webpack.config.js",
"build-test": "webpack --config config/webpack.test.config.js",
"eslint": "eslint {src,config,__tests__}/** example/*/{src,test}",
"test": "mocha tmp/testBundle.js --require source-map-support/register",
"integration_test": "./script/integration_test"
},
"files": [
"*.md",
"dist"
],
"author": "Justin Morris <[email protected]> (http://pixelbloom.com)",
"repository": {
"type": "git",
"url": "[email protected]:plasticine/inject-loader.git"
},
"license": "MIT",
"dependencies": {
"babel-core": "~6"
},
"devDependencies": {
"@webpack-blocks/webpack2": "^0.4.0",
"babel-loader": "^6.4.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"source-map-support": "^0.4.14",
"webpack": "^2.2.1"
},
"peerDependencies": {
"webpack": "^1 || ^2"
},
"keywords": [
"webpack",
"testing",
"loader",
"webpack-loader",
"inject",
"mock",
"mocking"
]
}