-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"private": true,
"name": "core",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "npm run lint:fix && npm run compile && npm run test",
"compile": "tsc",
"contributors": "git log --pretty=\"%an <%ae>\" | sort | uniq > CONTRIBUTORS",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"changelog": "lerna-changelog",
"docs": "gulp docs",
"lint": "tslint --format stylish --project .",
"lint:fix": "tslint --fix --format stylish --project .",
"format": "prettier --check \"**/*.{ts,js,json,yml}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json,yml}\"",
"prepublishOnly": "npm run lint && npm run compile && npm install && npm test",
"postinstall": "npm run bootstrap",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"coveralls": "^3.0.6",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-typedoc": "^2.2.2",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"lerna-changelog": "^0.8.2",
"prettier": "^1.18.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/monumentjs/core"
},
"jest": {
"clearMocks": true,
"automock": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true
}
}