-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
61
62
63
64
65
66
67
68
{
"name": "@skyscanner/bpk-svgs",
"version": "0.0.1",
"description": "Backpack's library of SVG's.",
"license": "Apache-2.0",
"engines": {
"node": ">=18.16.0",
"npm": ">=9.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skyscanner/bpk-svgs.git"
},
"author": "Backpack Design System <[email protected]>",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "gulp clean && gulp",
"clean": "rm -rf node_modules",
"jest": "TZ=Etc/UTC jest --coverage",
"lint": "npm run lint:js",
"lint:js": "eslint . --ext js,jsx",
"lint:js:fix": "eslint . --ext js,jsx --fix",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\"",
"test": "npm run lint && npm run jest"
},
"jest": {
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 75,
"lines": 75,
"statements": 75
}
},
"testRegex": "src/.*-test\\.js$",
"transformIgnorePatterns": [
"node_modules/(?!bpk)"
]
},
"devDependencies": {
"@skyscanner/bpk-foundations-web": "^18.1.0",
"@skyscanner/eslint-config-skyscanner": "^18.2.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@types/react": "^18.2.79",
"babel-loader": "^9.1.3",
"del": "^8.0.0",
"gulp": "^5.0.0",
"gulp-chmod": "^4.0.0",
"gulp-clone": "^2.0.1",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-util": "^3.0.8",
"jest": "^29.7.0",
"lodash": "^4.17.20",
"ordered-read-streams": "^2.0.0",
"through2": "^4.0.2",
"typescript": "^5.5.2",
"camelcase": "^8.0.0"
}
}