forked from arago/hiro-graph-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "hiro-graph-gremlin",
"version": "1.0.3",
"description": "Gremlin Query builder for the HIRO Graph API",
"main": "lib/gremlin.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "rm -rf lib/* && BABEL_ENV=production babel src --out-dir lib --source-maps",
"prepublish": "yarn build",
"test": "jest --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arago/hiro-graph-js.git"
},
"keywords": [
"HIRO Graph",
"HIRO",
"gremlin"
],
"author": "Chris Walker <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/arago/hiro-graph-js/issues"
},
"homepage": "https://github.com/arago/hiro-graph-js#readme",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-jest": "^23.4.2",
"babel-preset-hiro": "^0.4.0",
"jest": "^23.5.0"
},
"babel": {
"presets": [
[
"hiro",
{
"library": true
}
]
]
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](lib|node_modules)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
}
}
}