-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.03 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
{
"name": "cd-fe",
"version": "1.0.6",
"description": "潮点前端(cdfe)公用库libs",
"main": "dist/cd-fe.js",
"module": "dist/cd-fe.esm.js",
"types": "dist/cd-fe.d.ts",
"browser": "dist/cd-fe.min.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c --environment BUILD:production",
"build:api": "api-extractor run --local --verbose",
"build:dts": "tsc --outDir ./.temp --declaration --emitDeclarationOnly",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"clean": "del-cli dist .temp",
"lint": "eslint . --ext .js,.ts --fix",
"release": "npm run clean && npm run lint && npm run build:dts && npm run build && npm run build:api && npm test && npm run changelog",
"test": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CracKerMe/cd-fe.git"
},
"keywords": [
"chaodian",
"utils",
"libs"
],
"author": {
"name": "Apple Sun",
"url": "https://awebman.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CracKerMe/cd-fe/issues"
},
"homepage": "https://github.com/CracKerMe/cd-fe",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@microsoft/api-extractor": "^7.18.9",
"@rollup/plugin-typescript": "^8.2.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"chai": "^4.3.4",
"change-case": "^4.1.2",
"conventional-changelog-cli": "^2.1.1",
"create-banner": "^2.0.0",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-plugin-import": "^2.24.2",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^9.1.1",
"puppeteer": "^10.2.0",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}