-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 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
{
"name": "data-observer",
"author": "chenzesam",
"version": "0.0.1",
"description": "data observer",
"main": "dist/index.common.js",
"browser": "dist/index.browser.js",
"module": "dist/index.esm.js",
"types": "types",
"repository": {
"type": "git",
"url": "git+https://github.com/chenzesam/data-observer.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/chenzesam/data-observer/issues"
},
"homepage": "https://github.com/chenzesam/data-observer#readme",
"scripts": {
"test": "jest --coverage=true",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build": "rimraf dist && cross-env NODE_ENV=production rollup -c ./configs/rollup.pro.js",
"start": "cross-env NODE_ENV=development rollup --watch -c ./configs/rollup.dev.js"
},
"keywords": [
"scaffold",
"rollup"
],
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"commitizen": "^4.0.3",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"jest": "^25.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.0.4",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-sizes": "^1.0.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-jest": "^25.2.1",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}