-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.04 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"name": "sql-schema-lite",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itinance/sql-schema-lite.git"
},
"keywords": [
"sql",
"sqlite",
"sqlite3",
"sqlbuilder",
"orm"
],
"author": "Hagen Hübel",
"license": "MIT",
"bugs": {
"url": "https://github.com/itinance/sql-schema-lite/issues"
},
"homepage": "https://github.com/itinance/sql-schema-lite#readme",
"babel": {
"presets": [
"es2015"
]
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules/",
"__tests__/fixtures/"
]
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-jest": "^18.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"jest-cli": "^18.1.0"
},
"dependencies": {
"is-integer": "^1.0.6"
}
}