-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "@datagraph/dgf",
"description": "A framework for representing application data in a graph.",
"keywords": [
"graph",
"framework",
"data",
"node",
"redux",
"functional",
"state machine"
],
"version": "0.5.0",
"main": "dist/src/index.js",
"repository": "https://github.com/andrezsanchez/datagraph.git",
"author": "Andre Sanchez <andrezacsanchez@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/andrezsanchez/datagraph",
"bugs": {
"url": "https://github.com/andrezsanchez/datagraph/issues"
},
"engines": {
"node": ">=6.17.1"
},
"dependencies": {
"invariant": "^2.2.4"
},
"devDependencies": {
"@types/invariant": "2.2.33",
"@types/tape": "4.13.0",
"tap-dot": "2.0.0",
"tape": "5.0.1",
"ts-mockito": "2.6.1",
"ts-node": "9.0.0",
"typescript": "4.4.3"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"test": "tsc -p ./tsconfig.test.json && ts-node -P ./tsconfig.json ./node_modules/.bin/tape './src/**/*.spec.ts' | tap-dot"
}
}