-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "cronicle-client",
"version": "0.0.2",
"description": "Light Cronicle node client with full TypeScript support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=6"
},
"scripts": {
"clean": "rm -rf node_modules build coverage dist",
"build": "npm run lint && npm run buildDist",
"buildDist": "rm -rf dist/* && ./node_modules/.bin/tsc",
"test": "npm run lint && npm run mocha",
"mocha": "mocha test/**/*.ts --reporter spec --opts test/mocha.opts",
"cover": "istanbul cover node_modules/mocha/bin/_mocha test/**/*.ts -- -R spec --opts test/mocha.opts",
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PruvoNet/cronicle-client.git"
},
"files": [
"dist/*.d.ts",
"dist/*.js"
],
"keywords": [
"cronicle",
"client",
"typescript",
"node",
"api"
],
"author": "Regev Brody <regevbr@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/PruvoNet/cronicle-client/issues"
},
"homepage": "https://github.com/PruvoNet/cronicle-client#readme",
"peerDependencies": {
"request-promise": ">= 3.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"@types/proxyquire": "^1.3.28",
"@types/request-promise": "^4.1.44",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.3",
"delay": "^4.2.0",
"dirty-chai": "^2.0.1",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"moment": "^2.24.0",
"npm-install-peers": "^1.2.1",
"proxyquire": "^2.1.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}