-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
114 lines (114 loc) · 3.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "autodll-webpack-plugin",
"author": "Asaf Katz",
"license": "MIT",
"version": "0.4.2",
"description": "Webpack's DllPlugin without the boilerplate",
"repository": "https://github.com/asfktz/autodll-webpack-plugin",
"main": "lib/index.js",
"scripts": {
"install:fixturedeps": "node ./scripts/installFixtureDeps.js",
"lint": "eslint src specs",
"lint:fix": "npm run lint -- --fix",
"lint-staged": "lint-staged",
"test:unit": "ava specs/**/*.spec.js",
"test:integration": "node ./scripts/runIntegrationTests.js",
"test": "npm run test:unit && npm run test:integration",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"cleanup": "del-cli ./lib",
"build": "npm run cleanup && babel src --out-dir lib",
"build:watch": "npm run cleanup && babel src --out-dir lib --watch",
"prepublishOnly": "npm run build",
"precommit": "del-cli yarn.lock && lint-staged && npm run test",
"format": "prettier-eslint --print-width 100 --trailing-comma es5 --single-quote --write \"{{src,specs,scripts,examples/**/src,experiments/**/src}/**/*.{js,json,css},*.{js,json}}\" "
},
"files": [
"src",
"lib"
],
"lint-staged": {
"{{src,specs,scripts,examples/**/src,experiments/**/src}/**/*.{js,json,css},*.{js,json}}": [
"prettier-eslint --print-width 100 --trailing-comma es5 --single-quote --write",
"git add"
]
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"del": "^3.0.0",
"find-cache-dir": "^1.0.0",
"lodash": "^4.17.4",
"make-dir": "^1.0.0",
"memory-fs": "^0.4.1",
"read-pkg": "^2.0.0",
"tapable": "^1.0.0",
"webpack-merge": "^4.1.0",
"webpack-sources": "^1.0.1"
},
"devDependencies": {
"all-contributors-cli": "^4.5.0",
"ava": "^0.21.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.5.2",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"del-cli": "^1.1.0",
"eslint": "^4.1.1",
"eslint-config-prettier": "2.7.0",
"html-webpack-plugin": "^3.0.6",
"husky": "^0.14.3",
"lint-staged": "^4.0.0",
"prettier-eslint-cli": "4.4.0",
"recursive-readdir": "^2.2.1",
"slash": "^1.0.0",
"spy": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.0",
"webpack-dev-server": "^3.0.0",
"write-pkg": "^3.1.0"
},
"babel": {
"presets": [
"stage-3",
[
"env",
{
"targets": {
"node": "4"
}
}
]
],
"env": {
"debug": {
"sourceMaps": "inline",
"presets": [
"stage-3",
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"ava": {
"files": [],
"source": [
"src/**/*.js"
],
"concurrency": 5,
"failFast": false,
"require": [
"babel-register"
],
"babel": "inherit"
}
}