-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.89 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
{
"name": "--libraryname--",
"version": "1.0.0",
"description": "--description--",
"keywords": [],
"main": "dist/--libraryname--.umd.js",
"module": "dist/--libraryname--.es6.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"author": "--author-- <--email-->",
"repository": {
"type": "git",
"url": "--remote--"
},
"license": "MIT",
"engines": {
"node": ">=10.10.0"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ignore-pattern .eslintignore {src,test}/**/**/*.ts",
"lint:md": "eslint --ext md .",
"prebuild": "ts-node tools/clear-dist.ts",
"build": "rollup -c rollup.config.js && typedoc --out docs --theme minimal src",
"start": "npm run dev",
"dev": "rollup -c rollup.config.js -w",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "ts-node tools/cat.ts ./coverage/lcov.info | coveralls",
"commit": "git-cz",
"semantic-release": "semantic-release --branches=--branch--",
"precommit": "lint-staged",
"compiled": "tsc -p tsconfig.json",
"postinstall": "ts-node init/index.ts",
"clear-init-dependencies": "ts-node tools/clear-init-dependencies.ts"
},
"lint-staged": {
"{src,test}/**/**/*.ts": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"tslib": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.0",
"@types/prompt": "^1.1.0",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chalk": "^4.1.1",
"commitizen": "^4.2.4",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^2.2.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^4.3.8",
"jest": "^27.0.4",
"jest-config": "^27.0.4",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"prettier": "^2.3.0",
"prompt": "^1.0.0",
"rollup": "^2.50.6",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semantic-release": "^17.4.3",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.3.2",
"which": "^2.0.2"
}
}