-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "arctic",
"version": "0.0.0",
"description": "Database migration API for Knex",
"main": "./src",
"scripts": {
"lint": "standard",
"test": "npm run lint && babel-tape-runner test/*"
},
"repository": {
"type": "git",
"url": "https://github.com/knex/arctic.git"
},
"keywords": [
"knex",
"migrations",
"database"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/knex/arctic/issues"
},
"homepage": "https://github.com/knex/arctic",
"contributors": [
"Ben Drucker <[email protected]> (http://bendrucker.me)",
"Tim Griesser <[email protected]>"
],
"devDependencies": {
"babel": "~5.1.10",
"babel-tape-runner": "~1.1.0",
"blue-tape": "~0.1.8",
"isparta": "^2.2.0",
"knex": "~0.7.6",
"proxyquire": "^1.4.0",
"sinon": "^1.14.1",
"sinon-as-promised": "^2.0.3",
"sqlite3": "~3.0.5",
"standard": "bendrucker/standard#babel"
},
"dependencies": {
"bluebird": "^2.9.14",
"easydate": "^1.2.1",
"interpret": "~0.5.2",
"lodash.template": "^3.3.2",
"xtend": "^4.0.0"
},
"standard": {
"ignore": [
"src/stubs/*"
]
}
}