-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.25 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
{
"name": "customization-resolver-webpack-plugin",
"version": "2.0.0",
"description": "Makes file imported by relative path overridable from within customization folder",
"license": "MIT",
"private": false,
"author": {
"name": "Stefan Gojan",
"email": "[email protected]",
"url": "http://stefan-gojan.de"
},
"main": "lib/index.js",
"keywords": [
"webpack",
"plugin",
"resolver"
],
"repository": "hoschi/customization-resolver-webpack-plugin",
"scripts": {
"lint": "eslint .",
"test": "ava --verbose",
"test:watch": "ava --watch",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov",
"preversion": "npm run lint && npm run coverage"
},
"engines": {
"node": ">=v6.3.1"
},
"files": [
"lib/"
],
"devDependencies": {
"ava": "0.16.0",
"babel-eslint": "6.1.2",
"esformatter-limit-linebreaks": "0.0.3",
"eslint": "3.5.0",
"eslint-config-oniyi": "4.2.0",
"eslint-plugin-ava": "3.0.0",
"eslint-plugin-import": "2.2.0",
"jsfmt": "0.5.3",
"nyc": "8.1.0",
"sinon": "1.17.7"
},
"dependencies": {
"oniyi-logger": "1.0.0",
"ramda": "0.23.0"
},
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
}