forked from miniql/miniql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.87 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
{
"name": "miniql",
"version": "0.0.21",
"description": "A tiny JSON-based query language inspired by GraphQL",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "node ./build/index.js",
"start:dev": "nodemon",
"c": "npm run clean",
"clean": "rm -rf build/*",
"b": "npm run build",
"build": "tsc",
"cb": "npm run clean-build",
"clean-build": "npm run clean && npm run build",
"bw": "npm run build:watch",
"build:watch": "tsc --watch",
"cbw": "npm run clean-build:watch",
"clean-build:watch": "npm run clean-build && npm run build:watch",
"prepublishOnly": "npm run clean && npm test && npm run build",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"t": "npm run test",
"test": "jest",
"tw": "npm run test:watch",
"test:watch": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/miniql/miniql.git"
},
"keywords": [
"graphql",
"query",
"queries",
"query language",
"javascript",
"typescript",
"json",
"data",
"data science",
"data analysis"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/miniql/miniql/issues"
},
"homepage": "https://github.com/miniql/miniql#readme",
"dependencies": {
"typy": "^3.3.0",
"@miniql/core-types": "0.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"@types/node": "14.0.13",
"jest": "^26.1.0",
"source-map-support": "0.5.19",
"ts-jest": "^26.1.3",
"ts-node": "8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.7"
}
}