forked from plasticine/inject-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 KB
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
{
"name": "tv-inject-loader",
"version": "4.0.7",
"description": "A Webpack loader for injecting code into modules via their dependencies",
"main": "dist/index.js",
"scripts": {
"build-test": "webpack --config config/webpack.test.config.js",
"test-unit": "mocha tmp/testBundle.js --require source-map-support/register",
"test-integration": "./script/integration_test",
"test": "node build/prod-ready && flow && npm run test-unit && npm run test-integration",
"build": "webpack --config config/webpack.config.js && node build && cp tmp/index.js dist/index.js && node build && npm run test"
},
"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-latest": "^6.16.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.16.0",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"webpack": "^1 || ^2 || ^3 || ^4"
},
"keywords": [
"webpack",
"testing",
"loader",
"webpack-loader",
"inject",
"mock",
"mocking"
]
}