-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "step-ladder",
"version": "1.0.7",
"description": "",
"main": "./dist/lift.js",
"types": "./dist/type/lift.d.ts",
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"test": "jest",
"lint": "eslint ./src/*.ts ./__test/*.ts",
"push": "git push --follow-tags origin master",
"release:major": "standard-version --release-as major && npm run push",
"release:minor": "standard-version --release-as minor && npm run push",
"release:patch": "standard-version --release-as patch && npm run push"
},
"files": [
"dist"
],
"author": "EastLee",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@rollup/plugin-typescript": "^5.0.1",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"babel-jest": "^26.1.0",
"cz-conventional-changelog": "^3.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0",
"jest-cli": "^26.1.0",
"rollup-plugin-uglify": "^6.0.4",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.1",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}