-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "db-connections-templates",
"version": "0.1.2",
"description": "Auth0 Connection Scripts Repository",
"main": "./dbscripts.json",
"scripts": {
"prebuild": "rimraf dbscripts.json",
"build": "node ./build",
"deploy": "node deploy.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/auth0/db-connections-templates"
},
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0/db-connections-templates/issues"
},
"homepage": "https://github.com/auth0/db-connections-templates",
"devDependencies": {
"async": "^2.6.0",
"aws-sdk": "^2.610.0",
"bcrypt": "^3.0.6",
"dotenv": "^6.1.0",
"husky": "^1.3.1",
"jest": "21.2.1",
"mongodb": "^3.1.4",
"mysql": "^2.18.1",
"pg": "^7.18.1",
"request": "^2.88.2",
"rimraf": "^2.6.2",
"tedious": "1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ./dbscripts.json",
"pre-push": "npm test"
}
}
}