-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 921 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
{
"name": "miniprogram-cdn",
"version": "0.0.0",
"description": "auzre cn cdn compress for miniprogarm",
"main": "dist/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"dist/",
"es/",
"index.ts"
],
"scripts": {
"start": "npm run build",
"build": "npm run build:es5 && npm run build:es6",
"build:es5": "tsc index.ts --target es5 --declarationMap -d --outDir dist",
"build:es6": "tsc index.ts --target es6 --declarationMap -m es6 -d --outDir es",
"pub": "npm run build && npm publish --access public",
"test": "npm run build"
},
"author": "NewFuture <New.Future@microsfot.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/MS-DG/miniprogram-cdn.git"
},
"license": "ISC",
"devDependencies": {
"typescript": "^3.5.2"
}
}