-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1021 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
{
"name": "root",
"private": false,
"scripts": {
"test": "jest --coverage && coveralls < coverage/lcov.info",
"test-coverage": "jest --coverage",
"test-local": "jest",
"preversion": "npm run test-local && lerna run lint",
"postinstall": "lerna bootstrap",
"build": "lerna run clean:assets && lerna run build:package && lerna run copy:assets",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbouduin/holiday.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"command-line-args": "^5.2.0",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint": "^8.1.0",
"glob": "^8.0.1",
"jest": "^29.3.1",
"lerna": "^6.3.0",
"nock": "^13.2.4",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"xml-js": "^1.6.11"
}
}