-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.78 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
57
58
{
"name": "nomatic-arangodb-adapter",
"description": "ArangoDB Adapter for nomatic-data",
"version": "0.0.0-development",
"main": "src/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf src/**/*.js src/**/*.d.ts src/**/*.js.map src/*.js src/*.d.ts src/*.js.map",
"lint": "tslint -c tslint.json --project tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"test": "cross-env NODE_ENV=test nyc mocha --reporter spec",
"test:ci": "NODE_ENV=ci nyc mocha --reporter spec",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"docs": "typedoc --out ./docs/ --module commonjs --name nomatic-arangodb-adapter --hideGenerator --mode file --excludeExternals --excludePrivate --includeDeclarations --gaID UA-96699243-1 ./src",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bdfoster/nomatic-arangodb-adapter.git"
},
"keywords": [
"nomatic-data",
"nomatic",
"adpater",
"arangodb",
"data",
"adapter",
"nomatic-lib"
],
"author": "Brian Foster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bdfoster/nomatic-arangodb-adapter/issues"
},
"homepage": "https://github.com/bdfoster/nomatic-arangodb-adapter#readme",
"peerDependencies": {
"nomatic-data": ">= 3.0.0"
},
"dependencies": {
"arangojs": "^6.10.0",
"lodash.set": "^4.3.2"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^5.2.6",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"nomatic-data": "^4.0.1",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"semantic-release": "^15.13.3",
"ts-node": "^8.0.3",
"tslint": "^5.7.0",
"typedoc": "^0.14.2",
"typescript": "^3.4.3"
}
}