-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 1.89 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
{
"name": "@mineru98/searchts",
"description": "A library for filtering TypeScript objects based on a json SQL-like language, tsql",
"version": "1.1.8",
"url": "http://github.com/Mineru98/searchts",
"author": "Mineru (https://github.com/Mineru98)",
"license": "MIT",
"contributors": [
{
"name": "Mineru",
"url": "http://github.com/Mineru98"
}
],
"engines": {
"node": ">=0.8"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib",
"src"
],
"repository": {
"type": "git",
"url": "http://github.com/Mineru98/searchts.git"
},
"bugs": "https://github.com/Mineru98/searchts/issues",
"keywords": [
"search",
"searchts",
"searchjs",
"search-ts",
"search-js",
"object-search",
"search-object",
"object-query",
"objectquery",
"query",
"sql",
"json",
"node",
"typescript",
"filter"
],
"babel": {
"presets": [
"@babel/preset-typescript"
]
},
"prettier": {
"trailingComma": "es5",
"useTabs": true,
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 160
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-typescript": "^7.15.0",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.10",
"chai": "^4.3.4",
"codecov": "^3.6.5",
"cross-env": "7.0.3",
"mocha": "^9.1.1",
"nyc": "^12.0.2",
"should": "^13.2.1",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"scripts": {
"build": "npm run build:ts && npm run build:babel",
"build:ts": "rm -rf lib && tsc",
"build:babel": "babel lib --out-dir lib --extensions \".ts\" --source-maps inline",
"test": "cross-env NODE_ENV=test mocha -r ts-node/register ./test/test.ts --reporter spec",
"test-watch": "cross-env NODE_ENV=test mocha --watch -r ts-node/register ./test/test.ts --reporter spec",
"coverage": "nyc yarn test",
"prepublishOnly": "npm run build"
}
}