-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "tb-apps-sdk",
"private": true,
"scripts": {
"clean": "lerna clean --yes && rm -rf node_modules",
"build": "lerna run build",
"test": "lerna run test",
"lint": "lerna run lint",
"cover": "lerna run cover",
"prerelease": "yarn lint && yarn build && yarn test && lerna run prepublish",
"precommit": "lerna run precommit",
"release": "lerna publish --contents ./lib"
},
"devDependencies": {
"lerna": "^3.18.4",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"mocha": "^5.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"lint-staged": "^7.2.0",
"nyc": "^12.0.2",
"prettier": "^1.13.5",
"sinon": "^6.0.0",
"sinon-chai": "^3.1.0",
"tslib": "^1.6.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.8.3"
},
"prettier": {
"printWidth": 120,
"semi": false,
"trailingComma": "all",
"singleQuote": true,
"arrowParens": "always",
"parser": "typescript"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint -c tslint.json -p tsconfig.json --fix -e \"**/test/expect/**\"",
"git add"
]
}
}