This repository has been archived by the owner on Jun 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.86 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": "api",
"private": true,
"version": "0.0.0",
"description": "The TypeScript definition registry",
"main": "dist/app.js",
"files": [
"dist/",
"typings.json",
"LICENSE"
],
"scripts": {
"lint": "tslint \"src/**/*.ts\"",
"build": "rm -rf dist/ && tsc",
"build:dev": "tsc --watch",
"dev": "concurrently \"npm run build:dev\" \"npm run start:dev\"",
"test": "npm run lint && npm run build && echo \"TODO: Write unit tests\"",
"prepublish": "typings install && npm run build",
"start": "nf start",
"start:dev": "onchange -i \"dist/**/*\" -- npm run start",
"migrate": "immigration -d dist/migrations"
},
"engines": {
"node": "6.x"
},
"repository": {
"type": "git",
"url": "git://github.com/typings/typings.git"
},
"keywords": [
"typings",
"registry",
"api",
"json",
"rest",
"http"
],
"author": {
"name": "Blake Embrey",
"email": "[email protected]",
"url": "http://blakeembrey.me"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/typings/api/issues"
},
"homepage": "https://github.com/typings/api",
"devDependencies": {
"concurrently": "^3.1.0",
"foreman": "^2.0.0",
"onchange": "^3.0.2",
"ts-node": "^3.0.0",
"tslint": "^5.0.0",
"tslint-config-standard": "^6.0.0",
"typescript": "^2.2.1",
"typings": "^2.0.0"
},
"dependencies": {
"arrify": "^1.0.1",
"debug": "^2.2.0",
"envobj": "^1.0.2",
"express": "^4.13.3",
"glob": "^7.0.0",
"http-errors": "^1.4.0",
"immigration": "^2.0.0",
"knex": "^0.13.0",
"minimatch": "^3.0.0",
"newrelic": "^1.25.1",
"pad-left": "^2.0.1",
"pg": "^6.0.0",
"promise-finally": "^3.0.0",
"semver": "^5.1.0",
"split": "^1.0.0",
"thenify": "^3.1.1",
"throat": "^4.0.0",
"universal-analytics": "^0.4.2"
}
}