-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "scaffold-rollup-lib",
"version": "1.0.0",
"author": "jaden.wang <[email protected]>",
"license": "MIT",
"description": "Simple EventBus class is built for mini programs(Wechat/Alipay) using the publisher/subscriber pattern",
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "rollup -c -w",
"clean": "rm -rf ./lib ./types",
"build": "npm run clean && rollup -c",
"eslint:fix": "eslint --ext .tsx,.ts --fix ./src",
"prettier": "prettier --config ./.prettierrc --write ./src/**/*.{json,ts,tsx}"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^7.1.2",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"commitizen": "^4.3.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^1.0.1",
"lint-staged": "^13.2.2",
"lodash": "^4.17.21",
"prettier": "^1.18.2",
"rollup": "^1.25.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.3.1",
"rollup-plugin-typescript2": "^0.24.3",
"rollup-watch": "^4.3.1",
"typescript": "^3.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/ljadenwongl/scaffold-rollup-lib.git"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}