-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"private": true,
"name": "recaptcha",
"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",
"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.15",
"coveralls": "^3.0.4",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-typedoc": "^2.2.2",
"jest": "^24.8.0",
"lerna": "^3.15.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.17.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.2"
},
"jest": {
"clearMocks": true,
"automock": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "\\.test\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true
}
}