-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "devapi",
"version": "2022.12.16+01",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"go-publish": "npm publish --access public",
"dev": "rm -fr ./dist && tsc -p tsconfig.dev.json",
"build": "rm -fr ./dist && tsc -p tsconfig.prod.json",
"example": "npm run dev && node ./example/index.js",
"test": "ts-mocha -p ./tsconfig.test.json ./test/*"
},
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "http://192.168.3.197/tt/ts_api.git"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"gulp-typedoc": "^3.0.1",
"mocha": "^5.2.0",
"ts-mocha": "^2.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.1"
},
"dependencies": {
"tsc": "^2.0.4",
"xmlhttprequest": "^1.8.0"
}
}