-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.13 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
{
"name": "@uni-helper/galanga",
"version": "0.2.6-fix2",
"description": "JS common function library(UNI-APP version of Galanga)",
"main": "esm/index.js",
"jsnext:main": "esm/index.js",
"module": "esm/index.js",
"sideEffects": false,
"scripts": {
"demo:reload": "node ./scripts/demo-reload.js",
"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:esm",
"build:esm": "rollup -c config/rollup.config.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"script:delDistDTsFile": "node ./scripts/delDistDTsFile.js"
},
"author": "censujiang",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "git://github.com/uni-helper/galanga.git"
},
"homepage": "https://galanga.censujiang.com",
"bugs": {
"url": "https://github.com/uni-helper/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-node-resolve": "^15.0.2",
"@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": "5.0.1",
"rollup": "^3.12.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "10.1.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.2",
"typescript": "^5.0.4"
},
"dependencies": {
"galanga": "^0.2.6-fix2"
}
}