-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 936 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
{
"name": "tdd-base",
"version": "1.0.0",
"description": "TDD start repo",
"main": "index.js",
"scripts": {
"lint": "npx tslint -c tslint.json --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "npx tslint -c tslint.json --project tsconfig.json --fix 'src/**/*.ts'",
"compile": "tsc",
"test": "jest",
"build": "npm run lint && npm run compile && npm run test",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iflix/tdd-base.git"
},
"keywords": [
"tdd"
],
"author": "Peter Cipov",
"license": "ISC",
"bugs": {
"url": "https://github.com/iflix/tdd-base/issues"
},
"homepage": "https://github.com/iflix/tdd-base#readme",
"devDependencies": {
"@types/jest": "^23.3.10",
"jest": "^23.6.0",
"ts-jest": "^23.10.5",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.2.2"
}
}