forked from Skyscanner/backpack-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.8 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
57
58
59
60
{
"name": "backpack-ios",
"version": "0.0.0",
"private": true,
"engines": {
"node": "^8.12.0",
"npm": "^6.4.1"
},
"scripts": {
"preinstall": "npx ensure-node-env",
"test": "eslint . --ext .js,.jsx",
"build": "npm run test && gulp && npm run spellcheck",
"prettier": "prettier --config .prettierrc --write \"**/*.js\"",
"gulp": "gulp",
"spellcheck": "mdspell -r --en-gb --ignore-acronyms --ignore-numbers --no-suggestions '*.md' '**/*.md' '!**/node_modules/**/*.md' '!Example/Pods/**/*.md' '!vendor/**/*.md' '!gems/**/*.md'",
"spellcheck:interactive": "mdspell --en-gb --ignore-acronyms --no-suggestions --ignore-numbers '*.md' '**/*.md' '!**/node_modules/**/*.md' '!Example/Pods/**/*.md' '!gems/**/*.md'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.md": [
"mdspell -r --en-gb --ignore-acronyms --ignore-numbers --no-suggestions"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skyscanner/backpack-ios.git"
},
"author": "Backpack Design System <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Skyscanner/backpack-ios/issues"
},
"homepage": "https://github.com/Skyscanner/backpack-ios#readme",
"devDependencies": {
"bpk-svgs": "^6.8.0",
"bpk-tokens": "^27.6.0",
"del": "^5.0.0",
"eslint-config-skyscanner-with-prettier": "^0.8.0",
"eslint_d": "^7.3.0",
"gulp": "^4.0.2",
"gulp-data": "^1.3.1",
"gulp-nunjucks": "^5.0.0",
"gulp-rename": "^1.2.2",
"husky": "^3.0.0",
"lint-staged": "^9.0.0",
"lodash": "^4.17.11",
"markdown-spellcheck": "^1.3.1",
"merge2": "^1.2.3",
"through2": "^3.0.1",
"tinycolor2": "^1.4.1"
}
}