-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.05 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
{
"name": "webpack-configs",
"version": "0.3.0",
"description": "Various slightly opinionated shared webpack configurations",
"main": "index.js",
"license": "MIT",
"keywords": [
"webpack",
"shared",
"configs",
"merge"
],
"files": [
"index.js",
"configs"
],
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/panjiesw/webpack-configs.git"
},
"bugs": {
"url": "https://github.com/panjiesw/webpack-configs/issues"
},
"author": {
"name": "Panjie Setiawan Wicaksono",
"email": "panjie@panjiesw.com",
"url": "https://panjiesw.life"
},
"scripts": {
"test": "tape 'test/**/*.spec.js' | tap-spec",
"watch": "tape-watch 'test/**/*.spec.js' | tap-spec"
},
"devDependencies": {
"awesome-typescript-loader": "^3.1.2",
"extract-text-webpack-plugin": "^2.1.0",
"tap-spec": "^4.1.1",
"tape": "^4.6.3",
"tape-watch": "^2.2.4",
"typescript": "^2.1.6",
"webpack": "^2.2.1"
},
"dependencies": {
"webpack-merge": "^2.6.1"
},
"peerDependencies": {
"webpack": ">=2.2.0"
}
}