forked from walmartlabs/cookie-cutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1005 Bytes
/
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
{
"private": true,
"workspaces": [
"packages/core",
"packages/*",
"docs/website",
"examples/*"
],
"resolutions": {
"lz4": "0.6.3",
"marked": "^0.7.0",
"bl": "^4.0.3",
"node-fetch": "^2.6.1",
"node-forge": "^0.10"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@types/expect": "24.3.0",
"@types/jest": "25.2.1",
"@types/long": "4.0.1",
"@types/node": "10.17.30",
"glob": "7.1.6",
"jest": "25.5.4",
"jest-junit": "10.0.0",
"prettier": "1.19.1",
"semver": "7.3.2",
"ts-jest": "25.5.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.9.4"
},
"scripts": {
"build": "yarn workspaces run build",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"license-headers": "node fix-headers.js",
"bump-version": "node bump-version.js"
}
}