-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.41 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.41 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
49
50
51
52
53
54
{
"name": "sequelauto",
"version": "1.0.3",
"description": "Automatically generate records on database for Sequelize's model",
"main": "dist/sequelauto.js",
"scripts": {
"test": "nyc -x tests --reporter=text mocha --require babel-core/register tests",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/ tests/",
"build": "babel src/ --out-dir dist/",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eduardo-matos/sequelauto.git"
},
"keywords": [
"sequelize",
"sql",
"model",
"automatic",
"tdd",
"testing",
"fixture"
],
"author": "Eduardo Matos",
"license": "MIT",
"bugs": {
"url": "https://github.com/eduardo-matos/sequelauto/issues"
},
"homepage": "https://github.com/eduardo-matos/sequelauto#README.md",
"dependencies": {
"sequelize": "4.18.0",
"moment": "2.21.0",
"pad": "2.0.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.1.2",
"coveralls": "3.0.0",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"is-plain-object": "2.0.4",
"lodash": "4.17.13",
"mocha": "4.0.1",
"nyc": "11.3.0",
"sinon": "4.1.2",
"sqlite3": "3.1.13"
}
}