-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.33 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": "sequenice",
"version": "0.2.1",
"description": "An object-oriented model definition alternative for `sequelize`",
"main": "./dist/sequenice.js",
"scripts": {
"test": "mocha --require babel-register --reporter spec test",
"build:publish": "rimraf build && webpack",
"prepublish": "npm run build:publish"
},
"repository": {
"type": "git",
"url": "git://github.com/saschagehlich/sequenice.git"
},
"standard": {
"globals": [
"describe",
"context",
"before",
"beforeEach",
"after",
"afterEach",
"it",
"expect"
],
"parser": "babel-eslint"
},
"keywords": [
"sequelize",
"model",
"mysql",
"postgres",
"database",
"sql",
"sqlite"
],
"author": "Sascha Gehlich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saschagehlich/sequenice/issues"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-register": "^6.24.0",
"mocha": "~1.14.0",
"rimraf": "^2.6.1",
"sequelize": "4.0.0-2",
"should": "~2.0.2",
"sqlite3": "^3.1.8",
"webpack": "^2.3.2"
},
"dependencies": {
"globule": "~0.1.0",
"lodash": "^4.17.4"
}
}