-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
55 lines (55 loc) · 1.62 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
51
52
53
54
55
{
"name": "inject-loader",
"version": "4.0.1",
"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",
"build:release": "yarn run build && mkdir -p ./dist && cp -f ./tmp/index.js ./dist/index.js && cp -f ./tmp/index.js.map ./dist/index.js.map",
"pretest:unit": "yarn build && yarn build:test",
"test:unit": "mocha tmp/testBundle.js --require source-map-support/register",
"test:integration": "./script/integration_test",
"test": "flow && yarn test:unit && yarn test:integration",
"precommit": "pretty-quick --staged"
},
"files": [
"*.md",
"dist"
],
"author": "Justin Morris <desk@pixelbloom.com> (http://pixelbloom.com)",
"repository": {
"type": "git",
"url": "git@github.com:plasticine/inject-loader.git"
},
"license": "MIT",
"dependencies": {
"babel-core": "~6"
},
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"flow-bin": "^0.69.0",
"husky": "^0.14.3",
"mocha": "^5.0.5",
"prettier": "^1.11.1",
"pretty-quick": "^1.4.1",
"source-map-support": "^0.5.4",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"peerDependencies": {
"webpack": "^1 || ^2 || ^3 || ^4"
},
"keywords": [
"webpack",
"testing",
"loader",
"webpack-loader",
"inject",
"mock",
"mocking"
]
}