-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "@dragongate/miniprogram-storage",
"version": "0.0.1",
"description": "小程序 storage",
"main": "dist/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json --fix",
"build": "npm run build:es5 && npm run build:es6",
"build:es5": "tsc --outDir dist -d --declarationDir types",
"build:es6": "tsc -m es6 --target es6 --outDir es -d --declarationDir types",
"pretest": "npm run build",
"test": "tslint --project tsconfig.json"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/",
"es/",
"types/",
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ms-dg/miniprogram-storage.git"
},
"author": "New Future <npm@newfuture.cc>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ms-dg/miniprogram-storage/issues"
},
"homepage": "https://github.com/ms-dg/miniprogram-storage#readme",
"devDependencies": {
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-microsoft-contrib": "^6.1.0",
"typescript": "^3.4.1"
}
}