-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·107 lines (107 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·107 lines (107 loc) · 3.85 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@vgerbot/deformer",
"version": "1.0.0",
"description": "boilerplate project: typescript, rollup + karma + mocha + chai",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"distDir": "dist/",
"library": "boilerplate",
"types": "dist/index.d.ts",
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"postinstall": "husky install",
"release": "standard-version",
"commit": "commit",
"lint": " eslint {src,test}/**/*.{js,ts,tsx}",
"format": "eslint --fix {src,test}/**/*.{js,ts,tsx}",
"pretest:debug": "npm run lint",
"dev": "rollup -c ./rollup.dev.config.js",
"test:debug": "karma start ./karma.debug.conf.js --browsers Chrome",
"ci": "karma start ./karma.travis.conf.js --browsers HeadlessChrome --single-run true",
"codecov": "codecov < coverage/cobertura-coverage.xml",
"test:chromeheadless": "karma start ./karma.debug.conf.js --browsers HeadlessChrome --single-run true",
"build": "rollup -c ./rollup.config.js --environment 'production'",
"gendoc": "typedoc ./src --out dist/docs --name rollup-ts-karma-mocha-chai-boilerplate --hideGenerator"
},
"lint-staged": {
"{src,test}/**/*.{js,ts,tsx}": [
"npm run format",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/y1j2x34/rollup-ts-karma-mocha-chai-boilerplate.git"
},
"bugs": {
"url": "https://github.com/y1j2x34/rollup-ts-karma-mocha-chai-boilerplate/issues"
},
"keywords": [
"rollup-ts-karma-mocha-chai-boilerplate"
],
"files": [
"dist"
],
"homepage": "https://github.com/y1j2x34/rollup-ts-karma-mocha-chai-boilerplate#readme",
"author": "'y1j2x34' <y1j2x34@qq.com> (http://www.vgerbot.com/)",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@commitlint/prompt-cli": "^17.3.0",
"@rollup/plugin-commonjs": "23.0.4",
"@rollup/plugin-html": "^1.0.1",
"@rollup/plugin-json": "5.0.2",
"@rollup/plugin-node-resolve": "15.0.1",
"@rollup/plugin-strip": "3.0.1",
"@types/chai": "^4.3.4",
"@types/events": "^3.0.0",
"@types/hammerjs": "^2.0.36",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.13",
"@types/sinon": "^10.0.13",
"@types/websocket": "1.0.5",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"chai": "^4.3.7",
"codecov": "3.8.3",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"fs-extra": "11.1.0",
"husky": "8.0.2",
"karma": "6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "7.0.8",
"karma-sourcemap-loader": "0.3.8",
"lint-staged": "13.1.0",
"mocha": "^10.2.0",
"phantomjs-polyfill-object-assign": "0.0.2",
"prettier": "2.8.1",
"rollup": "3.7.3",
"rollup-plugin-istanbul": "4.0.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-serve": "^2.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"sinon": "^15.0.0",
"sinon-chai": "^3.7.0",
"ts-node": "^10.9.1",
"typedoc": "0.23.22",
"typescript": "4.9.4"
},
"dependencies": {
"events": "^3.1.0",
"hammerjs": "^2.0.8",
"tslib": "^2.4.1"
}
}