-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 985 Bytes
/
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
{
"name": "@alitajs/autils",
"version": "0.6.1",
"description": "Awesome Utils(前端常用工具方法)",
"repository": "[email protected]:alitajs/autils.git",
"author": "wangxingkang <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"unpkg": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"es",
"lib"
],
"scripts": {
"bootstrap": "yarn || npm i",
"lint": "walrus lint",
"test": "walrus test",
"build": "lotus-tools build",
"docs": "ts-node scripts/buildDocs.ts",
"predeploy": "yarn docs",
"deploy": "gh-pages -d .typedoc"
},
"devDependencies": {
"@lotus-ui/tools": "^0.2.5",
"@types/qs": "^6.5.3",
"@types/shelljs": "^0.8.5",
"@walrus/cli": "^0.0.6",
"gh-pages": "^2.1.1",
"qs": "^6.7.0",
"shelljs": "^0.8.3",
"ts-node": "^8.4.1",
"typedoc": "^0.15.0",
"typescript": "^3.4.5"
},
"publishConfig": {
"access": "public"
}
}