-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "@skpm/xcodeproj-loader",
"version": "0.1.12",
"author": "Mathieu Dutour",
"description": "xcodeproj loader module for webpack",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"main": "lib/index.js",
"files": [
"lib"
],
"dependencies": {
"@skpm/nib-loader": "^0.1.2",
"loader-utils": "^1.2.3",
"schema-utils": "^0.4.5"
},
"devDependencies": {
"del": "^4.0.0",
"eslint": "^5.15.1",
"eslint-config-webpack": "^1.0.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.4.0",
"lint-staged": "^13.1.0",
"memory-fs": "^0.4.0",
"pre-commit": "^1.0.0",
"webpack": "^4.29.6"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"scripts": {
"lint": "eslint --cache lib test",
"lint-staged": "lint-staged",
"test": "jest --no-watchman",
"test:watch": "jest --no-watchman --watch",
"test:coverage": "jest --no-watchman --collectCoverageFrom='src/**/*.js' --coverage"
},
"repository": "https://github.com/skpm/xcodeproj-loader.git",
"bugs": "https://github.com/skpm/xcodeproj-loader/issues",
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}