-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.77 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
{
"name": "galanga",
"version": "0.2.7",
"description": "JS common function library",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "esm/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"test": "npm run lint && nyc mocha",
"release": "node ./scripts/release.js",
"lint": "eslint src/ --ext .ts,.tsx,.js,.jsx --cache",
"lint:fix": "eslint src/ --ext .ts,.tsx,.js,.jsx --cache --fix",
"tsc": "tsc",
"build": "npm run clean && npm run build:self && npm run build:self.min && npm run build:esm && npm run build:esm.min && npm run build:aio && npm run build:aio.min",
"build:self": "rollup -c config/rollup.config.js",
"build:self.min": "cross-env NODE_ENV=production npm run build:self",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:esm.min": "cross-env NODE_ENV=production npm run build:esm",
"build:aio": "rollup -c config/rollup.config.aio.js",
"build:aio.min": "cross-env NODE_ENV=production npm run build:aio",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs:dev": "vitepress dev wiki --host",
"docs:build": "vitepress build wiki",
"docs:preview": "vitepress preview wiki",
"script:delDistDTsFile": "node ./scripts/delDistDTsFile.js"
},
"author": "censujiang",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "git://github.com/censujiang/galanga.git"
},
"homepage": "https://galanga.censujiang.com",
"bugs": {
"url": "https://github.com/censujiang/galanga/issues"
},
"files": [
"/dist",
"/src",
"*.d.ts",
"/esm",
"/types"
],
"engines": {
"node": ">= 0.12.0"
},
"types": "types",
"devDependencies": {
"@js-lib/cli": "^1.6.0",
"@rollup/plugin-typescript": "^11.1.1",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-plugin-istanbul": "6.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"es5-shim": "4.6.7",
"eslint": "^8.33.0",
"expect.js": "0.3.1",
"flexsearch": "^0.7.31",
"markdown-it": "^13.0.1",
"mocha": "10.2.0",
"nyc": "15.1.0",
"rimraf": "4.1.2",
"rollup": "^3.12.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "0.34.1",
"rollup-plugin-uglify": "6.0.4",
"shelljs": "^0.8.5",
"source-map-support": "0.5.21",
"ts-node": "10.9.1",
"tslib": "2.5.0",
"typescript": "^5.0.4",
"vite": "^4.2.0",
"vitepress": "^1.0.0-alpha.60",
"vitepress-plugin-search": "^1.0.4-alpha.19",
"vue": "^3.2.47"
},
"dependencies": {
"@types/js-cookie": "^3.0.5",
"js-cookie": "^3.0.5"
}
}