-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "squell",
"version": "2.0.9",
"bugs": "https://github.com/creativecuriositystudio/squell/issues",
"keywords": [
"sequelize",
"postgres",
"mysql",
"sqlite",
"orm",
"typescript"
],
"homepage": "https://github.com/creativecuriositystudio/squell",
"license": "MIT",
"description": "A type-safe wrapper around the Sequelize ORM for TypeScript",
"contributors": [
"Zack Corr <zack@z0w0.me> (http://z0w0.me)",
"Daniel Cavanagh <danielcavanagh85@gmail.com>",
"Sorakthun Ly <ly.sorakthun@gmail.com>"
],
"scripts": {
"prepush": "npm run lint && npm run test",
"prepare": "npm run build",
"build": "tsc && cp src/*.js dist",
"test": "mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch",
"lint": "tslint --format stylish --project tsconfig.json",
"clean": "rm -rf dist"
},
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"@types/sequelize": "^4.0.76",
"modelsafe": "^2.0.0",
"sequelize": "^4.12.0"
},
"dependencies": {
"@types/lodash": "^4.14.62",
"@types/reflect-metadata": "0.0.5",
"lodash": "^4.17.4",
"reflect-metadata": "^0.1.8",
"typescript": "^2.3.4"
},
"devDependencies": {
"@types/mocha": "^2.2.33",
"@types/sequelize": "^4.0.76",
"@types/should": "^8.1.30",
"gh-pages": "^1.0.0",
"husky": "^0.13.2",
"mocha": "^3.2.0",
"modelsafe": "^2.0.0",
"sequelize": "^4.12.0",
"should": "^11.1.2",
"sqlite": "^2.2.4",
"ts-node": "^3.3.0",
"tslint": "^5.0.0",
"tslint-config-ccs": "^0.6.1"
}
}