-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 855 Bytes
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
{
"name": "lab-sql",
"version": "3.0.0",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"start": "node --harmony index.js",
"test": "jest",
"watch": "jest --watch",
"build": "yarn run babel -- src/ -d lib/",
"prepublish": "yarn run build",
"release-patch": "npm version patch && npm publish",
"release-minor": "npm version minor && npm publish",
"release-major": "npm version major && npm publish"
},
"jest": {
"testPathIgnorePatterns": [
"/lib/"
]
},
"dependencies": {
"lodash.once": "^4.1.1",
"mysql": "^2.13.0",
"sequelize": "^3.30.4",
"statecontainer": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^19.0.0",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.44.2",
"jest": "^19.0.2",
"sqlite3": "^3.1.8"
}
}