-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.4 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
{
"name": "lib-starter",
"version": "0.1.0",
"description": "a library starter based on typescript, rollup, karma and mocha",
"engines": {
"node": ">=10.13.0",
"git": ">=2.13.0"
},
"main": "dist/index.umd.ts",
"module": "dist/index.esm.js",
"directories": {
"test": "test"
},
"files": [
"dist",
"types"
],
"scripts": {
"cm": "cz",
"clean": "rimraf dist && rimraf types",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint:ts": "eslint --f codeframe {src,test}/**",
"test": "karma start",
"build": "npm run clean && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mirages/lib-starter.git"
},
"keywords": [
"lib-starter",
"typescript",
"rollup",
"karma"
],
"author": "mirages",
"license": "MIT",
"bugs": {
"url": "https://github.com/mirages/lib-starter/issues"
},
"homepage": "https://github.com/mirages/lib-starter#readme",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-typescript": "^6.1.0",
"@types/chai": "^4.2.14",
"@types/karma": "^5.0.1",
"@types/mocha": "^8.0.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.2.0",
"commitizen": "^4.2.2",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.13.0",
"husky": "^4.3.0",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.2.0",
"lint-staged": "^10.5.1",
"mocha": "^8.2.1",
"postcss": "^8.1.7",
"prettier": "2.1.2",
"rimraf": "^3.0.2",
"rollup": "^2.33.1",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {}
}