-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
59
60
61
62
63
64
65
66
{
"name": "nomatic-data",
"description": "Extensible Object-relational Mapper for Node.js",
"version": "0.0.0-development",
"main": "src/index.js",
"typings": "src/index.d.ts",
"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": "rm -rf docs/ && typedoc --out ./docs/ --module commonjs --name nomatic-data --hideGenerator --mode file --excludeExternals --excludePrivate --includeDeclarations --gaID UA-96699243-1 ./src",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/bdfoster/nomatic-data.git"
},
"keywords": [
"nomatic",
"lib",
"orm",
"data",
"mapper",
"active",
"record"
],
"author": "Brian Foster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bdfoster/nomatic-data/issues"
},
"homepage": "https://github.com/bdfoster/nomatic-data#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.2",
"bcrypt": "^3.0.5",
"chai": "^4.2.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.0",
"mocha": "^6.1.2",
"node-gyp": "^3.6.2",
"nomatic-arangodb-adapter": "^1.0.16",
"nyc": "^13.3.0",
"semantic-release": "^15.13.3",
"source-map-support": "^0.5.0",
"ts-node": "^8.0.3",
"tslint": "^5.7.0",
"typedoc": "^0.14.2",
"typescript": "3.4.3"
},
"dependencies": {
"ajv": "^6.10.0",
"ajv-async": "^1.0.1",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash.set": "^4.3.2",
"lodash.unset": "^4.5.2",
"nomatic-events": "^3.0.0"
}
}