-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
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
{
"name": "sequelize-classes",
"version": "0.1.9",
"description": "Library to build Sequelize models using ES6 code",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ConciergeAuctions/sequelize-classes"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"build": "babel src -d lib",
"prepublish": "npm run build",
"pretest": "npm run build"
},
"keywords": [
"sequelize",
"babel",
"es6"
],
"author": "Brad Decker <bhdecker84@gmail.com>",
"license": "MIT",
"dependencies": {
"callsite": "^1.0.0",
"dotenv": "^1.2.0",
"lodash": "^3.10.1",
"pg": "^4.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^3.13.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.1.4",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"chai-shallow-deep-equal": "^1.3.0",
"chai-subset": "^1.1.0",
"chai-things": "^0.2.0",
"eslint": "^1.9.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.7.1",
"gulp": "git://github.com/gulpjs/gulp.git#4.0",
"gulp-eslint": "^1.0.0",
"mocha": "^2.2.5",
"should": "^7.0.3",
"sinon": "^1.16.1"
}
}