-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.86 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.86 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
50
51
52
53
{
"name": "juno-falcor-router",
"version": "0.2.1",
"description": "falcor router for knowledge graphs",
"repository": {
"type": "git",
"url": "git+https://github.com/junonetwork/falcor-router.git"
},
"main": "dist/index.js",
"scripts": {
"lint": "tslint src/**/*.ts",
"clean": "rm -r dist/",
"dev": "N3=./examples/data/seed.n3 tsc-watch --project tsconfig-example.json --onSuccess \"node dist_examples/examples/index.js\"",
"build:tests": "tsc --project tsconfig-test.json",
"test": "npm run build:tests && NODE_ENV=test node dist_test/test/ | tap-summary",
"validate": "npm run lint && npm run test",
"build": "npm run clean && tsc",
"deploy:patch": "npm run validate && npm run build && npm version patch && git push --follow-tags",
"deploy:minor": "npm run validate && npm run build && npm version minor && git push --follow-tags",
"deploy:major": "npm run validate && npm run build && npm version major && git push --follow-tags"
},
"author": "James Conkling <james.lane.conkling@gmail.com> jameslaneconkling.github.io",
"license": "ISC",
"dependencies": {
"falcor-router": "^0.8.3",
"levelgraph": "^2.1.1",
"levelgraph-n3": "^2.1.0",
"levelup": "^1.3.3",
"memdown": "^1.2.4",
"query-string": "^6.2.0",
"ramda": "^0.21.0",
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/falcor-express": "^0.1.18",
"@types/morgan": "^1.7.35",
"@types/query-string": "^6.1.0",
"@types/ramda": "github:types/npm-ramda#dist",
"@types/tape": "^4.2.32",
"express": "^4.16.3",
"falcor-express": "^0.1.4",
"falcor": "^1.1.0",
"gremlin": "^3.3.4",
"morgan": "^1.9.1",
"tap-summary": "^3.0.2",
"tape": "^4.9.1",
"tsc-watch": "^1.0.31",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.1.6"
}
}