-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.67 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
{
"name": "mtasa",
"version": "0.1.2",
"description": "mtasa",
"license": "MIT",
"repository": "https://github.com/4O4/node-mtasa",
"author": "4O4",
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && mocha --compilers ts:ts-node/register --recursive \"test/**/*-spec.ts\"",
"coverage": "nyc --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"dependencies": {
"request-promise": "4.2.2",
"request": "2.88.0"
},
"devDependencies": {
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "5.2.5",
"@types/mockery": "1.4.29",
"@types/node": "^7.0.0",
"@types/request-promise": "4.1.42",
"@types/sinon": "5.0.5",
"@types/sinon-chai": "3.2.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.0.2",
"mocha": "5.2.0",
"mockery": "2.1.0",
"nyc": "13.1.0",
"rimraf": "2.6.2",
"sinon": "7.1.1",
"sinon-chai": "3.2.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
}
}