-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.73 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
71
72
73
74
75
76
77
78
{
"name": "biojs-builder",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "npm run lint",
"start": "node .",
"startDev": "nodemon",
"make": "rm -fr dist && tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "nyc --reporter lcov tape $(find dist -name '*.spec.js' ! -name 'index.js') | tap-spec",
"coverage": "nyc check-coverage --lines 80 --functions 80 --branches 80"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"ignore": [
"dist"
],
"exec": "ts-node src/index.ts"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.js",
"**/*.d.ts"
]
},
"author": "Repositive Team",
"license": "MIT",
"keywords": [
"biojs-builder",
"service"
],
"dependencies": {
"@repositive/iris": "^1.0.0-alpha.8",
"@types/webpack": "^4.4.19",
"config": "^3.0.0",
"hapi": "^17.8.1",
"inert": "^5.1.2",
"joi": "^14.3.1",
"request": "^2.88.0",
"source-map-support": "^0.5.9",
"tar": "^4.4.8",
"webpack": "^4.26.0"
},
"devDependencies": {
"@repositive/typescript": "^1.1.2",
"@types/config": "0.0.34",
"@types/hapi": "^17.8.2",
"@types/node": "^10.12.10",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.48.1",
"@types/sinon": "^5.0.7",
"@types/tape": "^4.2.32",
"@types/tar": "^4.0.0",
"husky": "^1.2.0",
"nodemon": "^1.18.9",
"nyc": "^13.1.0",
"proxyquire": "^2.1.0",
"sinon": "^7.1.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
}
}