-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 809 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 809 Bytes
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
{
"name": "source-loader",
"description": "Webpack loader that exports the source directly",
"version": "1.0.0",
"author": "static-dev",
"ava": {
"verbose": "true"
},
"bugs": "https://github.com/static-dev/source-loader/issues",
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "2.x",
"nyc": "^11.0.3",
"standard": "^10.0.2",
"webpack": "^3.0.0"
},
"engines": {
"node": ">= 6.0.0"
},
"homepage": "https://github.com/static-dev/source-loader",
"license": "MIT",
"main": "lib",
"repository": "static-dev/source-loader",
"scripts": {
"test": "ava",
"lint": "standard",
"coverage": "nyc ava",
"coveralls": "nyc --reporter=lcov ava && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"is-binary-path": "^2.0.0"
}
}