-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"name": "ts-jest-pkg-starter",
"version": "0.0.8",
"description": "For those of you who wanted to create a quick, simple npm package in Typescript.",
"keywords": [
"typescript",
"jest",
"travis",
"coveralls",
"npm",
"boilerplate",
"starter"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest --config jest.config.json",
"test:ci": "jest --config jest.config.json --ci --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint --fix -p tsconfig.json",
"build": "rimraf dist && tsc --build",
"preversion": "npm run lint && npm run test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"author": "https://github.com/briwa",
"license": "MIT",
"devDependencies": {
"@types/jest": "24.0.6",
"coveralls": "3.0.3",
"jest": "24.3.0",
"rimraf": "2.6.3",
"ts-jest": "24.0.0",
"tslint": "5.13.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.3.3333"
},
"repository": {
"type": "git",
"url": "git+https://github.com/briwa/ts-jest-pkg-starter.git"
},
"engines": {
"node": ">=10"
}
}