-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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": "es-migrate",
"version": "0.3.3",
"description": "Minimalistic database-agnostic es6 migrations.",
"bin": "src/cli",
"main": "src/index.js",
"scripts": {
"test": "node --harmony node_modules/.bin/tape-watch test/*.js test/strategies/*.js -R blue-tape -p tap-spec --harmony"
},
"repository": {
"type": "git",
"url": "https://github.com/tuckerconnelly/es-migrate.git"
},
"homepage": "https://github.com/tuckerconnelly/es-migrate.git",
"keywords": [
"node",
"es6",
"es7",
"migrations",
"migrate"
],
"engines": {
"node": ">=7.0.0"
},
"author": "Tucker Connelly <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^6.1.2",
"blue-tape": "^1.0.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.1.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"lodash": "^4.16.6",
"mock-fs": "^3.11.0",
"mockdate": "^1.0.4",
"rewire": "^2.5.2",
"sinon": "^1.17.5",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"tape-watch": "^2.2.3"
},
"optionalDependencies": {
"co-pg": "^2.0.0",
"pg": "^6.1.0"
},
"dependencies": {
"lodash": "^4.16.6",
"minimist": "^1.2.0"
}
}