-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 2 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
{
"name": "pld-smart",
"version": "0.0.1",
"description": "PLD SMART",
"private": true,
"main": "dist/lib-es2015/lib/index.js",
"browser": "dist/lib-es5/lib/index.js",
"types": "dist/lib-es2015/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/o10if/pld-smart-backend.git"
},
"scripts": {
"gh-pages": "rm -rf build/gh-pages/ && typedoc --includeDeclarations --out build/gh-pages/ --module commonjs --target es2015 --exclude '**/*.spec.ts' --mode modules --name Guido --readme README.md src/lib/ && touch build/gh-pages/.nojekyll && cp -r build/gh-pages/. dist/gh-pages/",
"lint": "gulp :lint",
"prepare": "typings install && gulp all:tsconfig.json && gulp :tslint.json && gulp all:dist",
"prepublishOnly": "npm test",
"prestart": "gulp main:build",
"start": "node build/main/main/main.js",
"test": "gulp :lint && gulp lib-test",
"typedoc": "typedoc --includeDeclarations --out doc/api/ --module commonjs --target es2015 --exclude '**/*.spec.ts' --mode modules --name Guido --readme README.md src/lib/"
},
"pre-commit": {
"run": [
"lint"
]
},
"keywords": [],
"license": "MIT",
"dependencies": {
"@types/uuid": "^2.0.29",
"bluebird": "^3.4.6",
"body-parser": "^1.17.1",
"cheerio": "^0.22.0",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"kryo": "^0.5.0-alpha.3",
"lodash": "^4.17.2",
"morgan": "^1.8.1",
"pg": "^6.1.5",
"request": "^2.75.0",
"sequelize": "^3.30.4",
"uuid": "^3.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/cookie-parser": "^1.3.30",
"@types/express": "^4.0.35",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.12",
"@types/pg": "^6.1.38",
"@types/sequelize": "^3.4.43",
"chai": "^3.5.0",
"demurgos-web-build-tools": "0.13.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-cli": "^1.2.2",
"pre-commit": "^1.2.2",
"typedoc": "^0.5.10",
"typescript": "^2.1.1",
"typings": "^2.1.1"
}
}