-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.07 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
61
62
63
64
{
"name": "data-modela",
"version": "1.0.1",
"description": "an application that uses sequelize methods to work with dummy-data when building appliication",
"main": "./lib/main/index.js",
"scripts": {
"test:lib": "mocha lib/test/ --exit",
"build": "babel src -s -d lib",
"transpile": "tsc",
"babel:node": "babel-node src/main/createModel",
"test": "npm run transpile; npm run build && npm run test:lib && export USE_DB=0 && npm run build && npm run test:lib --exit",
"test2": "npm run transpile; npm run build && npm run test:lib && . ./.env && npm run build && npm run test:lib --exit",
"test:local": ". ./.env && npm run build && npm run test:lib && export USE_DB=0 && npm run test:lib",
"test:local2": "export USE_DB=0 && npm run build && npm run test:lib && . ./.env && npm run test:lib",
"prepublish": "npm test",
"start": "nodemon --exec npm run babel:node",
"test:db": "npm run build && mocha lib/test/dbclass",
"test:db2": "mocha lib/test/dbclass",
"js:lint": "eslint src/",
"coverage": "nyc npm run test && nyc report --reporter=lcov"
},
"nyc": {
"exclude": "**/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tutugodfrey/modela.git"
},
"keywords": [
"js",
"node",
"npm",
"mocha",
"class",
"dummy-data"
],
"author": "Tutu Godfrey <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tutugodfrey/modela/issues"
},
"homepage": "https://github.com/tutugodfrey/modela#readme",
"dependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"pg": "^8.4.2",
"typescript": "^4.1.3"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.12.1",
"nyc": "^14.1.1"
}
}