-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
43 lines (43 loc) · 1.37 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
{
"name": "@types/sequelize",
"version": "4.0.0",
"private": true,
"description": "Typescript Typings for Sequelize",
"typings": "index.d.ts",
"dependencies": {
"@types/validator": "^6.3.0",
"@types/bluebird": "^3.5.5"
},
"peerDependencies": {
"typescript": ">=2.0.0"
},
"devDependencies": {
"prettier": "^1.9.2",
"tslint": "~5.8.0",
"tslint-config-prettier": "^1.6.0",
"typedoc": "^0.13.0",
"typescript": "^2.5.3"
},
"scripts": {
"build": "tsc -p .",
"prettier": "prettier --write --list-different '**/{*.{json,ts,md},.prettierrc}'",
"test": "tsc -p test",
"tslint": "npm run tslint-types && npm run tslint-test",
"tslint-types": "tslint -p tsconfig.json -c tslint.json '**/*.d.ts' -e 'node_modules/**'",
"tslint-test": "tslint -p test/tsconfig.json -c tslint.json 'test/**/*.ts'",
"typedoc": "typedoc --tsconfig tsconfig.json --includeDeclarations --excludeExternals --readme docs_index.md --name \"TypeScript definitions for Sequelize\" --mode modules --out typedoc lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/types/sequelize.git"
},
"author": "Louay Alakkad",
"license": "ISC",
"contributors": [
"Felix Becker <[email protected]>"
],
"bugs": {
"url": "https://github.com/types/sequelize/issues"
},
"homepage": "https://typed-sequelize.surge.sh"
}