-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "i-are-dba",
"version": "0.0.8",
"description": "Infer RDBMS structure from matrix of data.",
"main": "./distribution/index.js",
"scripts": {
"test": "mocha ./test --recursive --timeout 1000",
"lint": "eslint ./src ./test",
"build": "babel src --presets babel-preset-es2015 --out-dir distribution",
"prepublish": "npm run lint; npm test; npm run build",
"dopublish": "npm publish ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakehoward/i-are-dba.git"
},
"author": "jakehoward",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jakehoward/i-are-dba/issues"
},
"homepage": "https://github.com/jakehoward/i-are-dba#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.7.0",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.0.2"
},
"dependencies": {
"big-decimal": "^1.0.2",
"big-integer": "^1.6.16",
"lodash": "^4.16.2",
"moment": "^2.15.1",
"pg-format": "^1.0.3"
}
}