-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 962 Bytes
/
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
{
"name": "@tfso/njs-repository",
"version": "1.2.160",
"description": "CRUD repository using JavaScript Expressions as a boolean predicate for database queries ",
"author": {
"name": "Lostfields"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tfso/njs-tfso-repository"
},
"main": "./lib/main",
"typings": "./lib/main",
"scripts": {
"test": "node node_modules/mocha/bin/_mocha --reporter spec --recursive lib/test/*.js",
"cover": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --reporter spec --recursive lib/test/*.js",
"build": "tsc",
"preversion": "npm run build && npm test",
"postversion": "git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/mocha": "^5",
"@types/node": "^12",
"benchmark": "^2.1.4",
"istanbul": "^0.4.4",
"mocha": "^5",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}