-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.17 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": "standard-loader",
"version": "7.0.0",
"description": "Lint webpack builds with standard/standard.",
"main": "index.js",
"scripts": {
"lint": "standard index.js test/index.js && echo 'code looks ok.'",
"test": "tape test/index.js && npm run lint"
},
"keywords": [
"webpack",
"eslint",
"lint",
"eshint"
],
"author": "Tim Oxley <secoif@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"has-ansi": "^3.0.0",
"node-libs-browser": "^2.1.0",
"standard": "*",
"standardx": "*",
"tape": "^4.9.0",
"webpack": "^4.0.1"
},
"standard": {
"parser": "babel-eslint"
},
"dependencies": {
"loader-utils": "^1.1.0",
"object-assign": "^4.1.1",
"snazzy": "^8.0.0"
},
"peerDependencies": {
"standard": "*"
},
"directories": {
"example": "example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard/standard-loader.git"
},
"bugs": {
"url": "https://github.com/standard/standard-loader/issues"
},
"homepage": "https://github.com/standard/standard-loader#readme"
}