generated from jsynowiec/node-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.71 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "juno-node",
"version": "0.1.2",
"description": "",
"keywords": [],
"main": "dist/juno-node.cjs.js",
"module": "dist/juno-node.es5.js",
"typings": "dist/types/juno-node.d.ts",
"files": [
"dist"
],
"author": "thebongy <rishit.bansal@vicara.co>",
"repository": {
"type": "git",
"url": "https://github.com/bytesonus/juno-node"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "tslint --project ./tsconfig/tsconfig.base.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"prebuild": "rimraf dist",
"build": "rollup -c rollup.config.ts && typedoc --out docs --target es6 --theme minimal --mode file src",
"start": "rollup -c rollup.config.ts -w",
"test": "ts-mocha -p ./tsconfig/tsconfig.test.json test/**/*.test.ts",
"test:coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm test",
"test:prod": "npm run lint && npm run test",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release",
"semantic-release-prepare": "ts-node tools/semantic-release-prepare",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/expect": "^24.3.0",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.0.2",
"colors": "^1.4.0",
"commitizen": "^4.0.4",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"lint-staged": "^10.1.7",
"lodash.camelcase": "^4.3.0",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"replace-in-file": "^6.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.7.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-typescript2": "^0.27.0",
"semantic-release": "^17.0.7",
"shelljs": "^0.8.4",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"travis-deploy-once": "^5.0.11",
"ts-mocha": "^7.0.0",
"ts-node": "^8.9.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.5",
"typescript": "^3.8.3"
},
"dependencies": {}
}