-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.67 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
54
55
56
{
"name": "fl-migrations",
"version": "0.0.2",
"description": "a plugin to implement migrations",
"main": "distribution/index.js",
"scripts": {
"create-db": "psql -tc \"SELECT 1 FROM pg_database WHERE datname = '$DATABASE_NAME'\" | grep -q 1 || psql -c \"CREATE DATABASE $DATABASE_NAME\"",
"test": "jest --forceExit --coverage",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"test-debug": "eval $(cat .test_env) jest",
"clean": "rimraf distribution",
"lint": "eslint .",
"build": "babel src --out-dir distribution",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/founderlab/fl-migrations.git"
},
"author": "Danny Sullivan <[email protected]>",
"license": "MIT",
"keywords": [
"migrations"
],
"bugs": {
"url": "https://github.com/founderlab/fl-migrations/issues"
},
"homepage": "https://github.com/founderlab/fl-migrations#readme",
"engines": {
"node": "8.3.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^1.5.1",
"eslint-config-founderlab": "^0.2.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.4.2",
"fl-backbone-sql": "^2.5.0",
"jest": "^20.0.4",
"nyc": "^11.1.0",
"pg": "^4.5.1",
"rimraf": "^2.6.1",
"superagent": "^3.5.2"
},
"dependencies": {
"fl-server-utils": "^0.11.0",
"backbone": "^1.2.0",
"backbone-orm": "^0.7.14"
}
}