-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.95 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
{
"name": "ancient-postgresql",
"version": "0.0.0",
"description": "Tracking, subscribing and restricted queries language for PostgreSQL.",
"bugs": "https://github.com/AncientSouls/PostgreSQL/issues",
"repository": "AncientSouls/PostgreSQL",
"license": "MIT",
"scripts": {
"tsc": "rm -rf ./lib ./tests && ./node_modules/typescript/bin/tsc",
"test": "./node_modules/mocha/bin/mocha ./tests/index.js --require source-map-support/register --timeout 100000",
"tslint": "./node_modules/tslint/bin/tslint -c tslint.json './src/**/*.ts'",
"dev-link": "npm link ancient-mixins && npm link ancient-babilon && npm link ancient-asket && npm link ancient-tracker",
"dev-test": "(rm -rf .dev && git clone -b dev https://github.com/AncientSouls/AncientSouls.github.io.git .dev && cd .dev && git submodule init && git submodule update && npm run dev-install) && npm link ./ && (cd .dev && npm run dev-use-links && npm run dev-check)",
"np": "./node_modules/np/cli.js --no-publish --no-yarn --yolo --any-branch",
"pg-start": "docker pull postgres && docker run --name postgres -d -p 5432:5432 postgres",
"pg-stop": "docker stop postgres && docker rm postgres",
"pg-terminal": "docker run -it --rm --link postgres:postgres postgres psql -h postgres -U postgres"
},
"dependencies": {
"ancient-asket": "^0.1.5",
"ancient-babilon": "0.1.0",
"ancient-mixins": "0.0.13",
"ancient-tracker": "^0.2.2",
"chai": "^4.1.2",
"lodash": "^4.17.5",
"pg": "^7.4.1",
"randomstring": "^1.1.5",
"react": "^16.3.0"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/node": "^10.0.2",
"@types/pg": "^7.4.5",
"async": "^2.6.0",
"execa": "^0.10.0",
"mocha": "^5.0.1",
"np": "^2.20.1",
"shelljs": "^0.8.1",
"source-map-support": "^0.5.3",
"ts-node": "^6.0.2",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.7.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.7.2"
}
}