This repository has been archived by the owner on Jul 31, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (99 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "metis",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "npm run lint",
"setup": "npm i && tsc --outDir dist",
"start": "node .",
"startDev": "nodemon --watch src/ --watch package.json -e ts,json -q -x 'rm -fr dist && echo \"\\n============\\nCOMPILING...\\n============\\n\\n\" && tsc --outDir dist || return 0 && node .'",
"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 70 --functions 70 --branches 60",
"documentation": "./node_modules/.bin/esdoc"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.spec.js",
"**/*.d.ts"
]
},
"esdoc": {
"source": "./src",
"destination": "./docs",
"plugins": [
{
"name": "esdoc-standard-plugin",
"option": {
"brand": {
"logo": "./logo.png",
"title": "Metis",
"description": "Metis Documentation",
"repository": "https://github.com/repositive/metis/",
"image": "./logo.png"
},
"test": {
"source": "./dist",
"interfaces": ["describe", "it", "context", "suite", "test"],
"includes": ["(spec|Spec|test|Test)\\.js$"]
}
}
},
{
"name": "esdoc-typescript-plugin",
"option": {
"enable": true
}
}
]
},
"author": "Repositive Team",
"license": "MIT",
"keywords": [
"metis",
"service"
],
"dependencies": {
"@repositive/iris": "^0.7.6",
"ajv": "^5.2.2",
"config": "^1.26.2",
"node-fetch": "^1.7.2",
"pg": "^7.3.0",
"ramda": "^0.24.1",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"@repositive/typescript": "^1.1.2",
"@types/config": "0.0.32",
"@types/node": "^8.0.24",
"@types/pg": "^7.1.4",
"@types/proxyquire": "^1.3.28",
"@types/ramda": "^0.24.13",
"@types/request-promise": "^4.1.37",
"@types/sinon": "^2.3.3",
"@types/tape": "^4.2.30",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"esdoc-typescript-plugin": "^1.0.0",
"husky": "^0.14.3",
"nodemon": "^1.11.0",
"nyc": "^11.1.0",
"proxyquire": "^1.8.0",
"sinon": "^3.2.1",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"tslint": "^5.6.0",
"typescript": "^2.4.2"
}
}