forked from felixfbecker/sequelize-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "sequelize-decorators",
"version": "1.0.2",
"description": "Sequelize + Decorators = ❤",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "tsc -p . && babel src --out-dir dist",
"watch": "tsc -w -p . & babel src --out-dir dist --watch",
"test": "mocha dist/test",
"cover": "nyc --all --require source-map-support/register mocha dist/test",
"lint": "tslint -c tslint.json src/**/*.ts"
},
"author": "Felix Becker <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/felixfbecker/sequelize-decorators"
},
"license": "ISC",
"dependencies": {
"reflect-metadata": "^0.1.3"
},
"peerDependencies": {
"sequelize": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^7.0.46",
"@types/sequelize": "types/sequelize#660ddda566719608d9f6528690f2bed8643179b8",
"@types/sinon": "^2.3.7",
"babel-cli": "^6.14.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015-node4": "^2.1.0",
"eslint": "^4.0.0",
"mocha": "^4.0.1",
"nyc": "^11.0.2",
"sequelize": "^4.0.0-1",
"sinon": "^4.1.1",
"source-map-support": "^0.5.0",
"tslint": "^5.4.3",
"typescript": "^2.3.4"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"nyc": {
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/test/**/*.js"
]
}
}