-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
128 lines (128 loc) · 3.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "cypher-query-builder",
"version": "6.0.4",
"description": "An intuitive, easy to use query builder for Neo4j and Cypher",
"author": "James Ferguson",
"license": "MIT",
"repository": "github:jamesfer/cypher-query-builder",
"main": "dist/cjs5.js",
"module": "dist/esm5.js",
"es2015": "dist/esm2015.js",
"typings": "dist/typings/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=6"
},
"keywords": [
"cypher",
"query",
"builder",
"neo4j",
"orm",
"graph"
],
"scripts": {
"commit": "git-cz",
"build": "scripts/build declaration && scripts/build rollup",
"build:declaration": "scripts/build declaration",
"build:rollup": "scripts/build rollup",
"docs": "scripts/docs",
"lint": "scripts/lint",
"report": "scripts/report",
"test": "scripts/test-integration",
"test:unit": "scripts/test",
"validate": "scripts/validate"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogFile": "CHANGELOG.md"
},
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}\n[skip ci]\n"
}
]
},
"babel": {
"plugins": [
"lodash"
]
},
"nyc": {
"all": true,
"produce-source-map": true,
"report-dir": "./coverage",
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register",
"source-map-support/register"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/*.mock.ts"
]
},
"dependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^12.6.1",
"lodash": "^4.17.15",
"neo4j-driver": "^4.1.2",
"node-cleanup": "^2.1.2",
"rxjs": "^6.5.2",
"tslib": "^1.10.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@types/chai": "^4.0.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/sinon": "^7.0.13",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"commitizen": "^4.0.3",
"coveralls": "^3.0.4",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"rollup": "^1.19.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.0",
"semantic-release": "^15.13.18",
"sinon": "^7.3.2",
"source-map-support": "^0.5.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-airbnb": "^5.11.1",
"typedoc": "^0.15.3",
"typescript": "^4.9.5"
}
}