-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 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
58
59
60
{
"name": "ts-boilerplate",
"version": "0.0.0-development",
"description": "A Boilerplate for TypeScript projects, testing, code coverage and CI included - CHANGE ME",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist coverage .nyc_output",
"clean:all": "npm run clean && rimraf node_modules",
"prebuild": "rimraf dist",
"build": "tsc",
"precommit": "npm run build && npm run cover && npm run check-coverage",
"commit": "git-cz",
"check-coverage": "./node_modules/.bin/nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"watch:test": "npm t -- -w",
"test": "npm run build && tsc -p test && mocha --recursive test/**/*.test.js",
"test:debug": "npm run build && tsc -p test && mocha --inspect-brk --recursive test/**/*.test.js",
"cover": "./node_modules/.bin/nyc --reporter=lcov --reporter=text npm t",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/YOUR-GIT-REPOSITORY-HERE.git"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Antonio Pintus <[email protected]> (http://www.vivocha.com/)",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "0.0.31",
"@types/chai-spies": "0.0.0",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.25",
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"chai-spies": "^0.7.1",
"commitizen": "^2.9.6",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"husky": "^0.14.3",
"mocha": "^3.5.0",
"nyc": "^11.1.0",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.2",
"typescript": "^2.4.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}