-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "janet-ts-http",
"version": "0.0.0",
"description": "janet-ts-http",
"license": "MIT",
"repository": "",
"author": "Sergey Zenchenko",
"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 --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --compilers ts:ts-node/register --recursive 'test/**/*.test.ts'",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"dependencies": {
"janet-ts": "git+https://github.com/techery/janet-ts.git#4a5f5aa82d998286bfe672e291ca3b770a517cf4",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^3.0.0",
"@types/mocha": "^2.0.0",
"@types/node": "^7.0.0",
"chai": "^3.0.0",
"mocha": "^3.0.0",
"nyc": "^10.0.0",
"rimraf": "^2.0.0",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"typescript": "2.6.2",
"coveralls": "^2.0.0"
},
"engines": {
"node": ">=4.0.0"
}
}