-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
{
"name": "ts-lib-project",
"version": "0.0.4",
"description": "ts-lib-project",
"keywords": [],
"main": "dist/ts-lib-project.umd.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"author": "ediaos <ediaos@live.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": ""
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"lint": "eslint src --fix --ext .ts,.tsx ",
"prebuild": "rimraf dist && rimraf lib",
"build": "tsc --module commonjs && rollup -c rollup.config.ts --environment NODE_ENV:production && typedoc --out docs --target es6 --theme minimal --mode file src ",
"dev": "rollup -c rollup.config.ts -w --environment NODE_ENV:development",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "npm run lint && npm run test -- --no-cache",
"precommit": "lint-staged"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@types/jest": "^24.0.23",
"@types/node": "^13.9.1",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"colors": "^1.4.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^24.9.0",
"jest-config": "^24.9.0",
"jest-environment-jsdom": "^24.9.0",
"jest-environment-jsdom-global": "^1.2.0",
"lint-staged": "^10.0.8",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.19.1",
"prompt": "^1.0.0",
"replace-in-file": "^5.0.2",
"rimraf": "^3.0.2",
"rollup": "^1.27.4",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^0.12.1",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.25.2",
"semantic-release": "^17.0.4",
"shelljs": "^0.8.3",
"ts-jest": "^24.1.0",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typedoc": "^0.17.1",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"eslint",
"git add"
]
},
"dependencies": {}
}