forked from rollun-lc/rollun-ts-rql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "rollun-ts-rql",
"main": "dist/index.js",
"version": "0.10.0",
"description": "RQL query object and serializer written in TypeScript",
"scripts": {
"analyse": "node_modules/.bin/tslint --project ./tslint.json -e **/__tests__/**",
"fix-style": "node_modules/.bin/tslint --fix --project ./tslint.json",
"build": "tsc && babel src --ignore node_modules --out-dir dist --extensions '.ts' --minified",
"test": "jest",
"test:ci": "jest --coverage --coverageReporters=\"json-summary\" --watchAll=false",
"test:coverage": "jest --coverage",
"update:badge": "node ./updateBadge.js"
},
"jest": {
"coverageReporters": [
"html",
"json-summary",
"json",
"lcov"
],
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollun-com/rollun-ts-rql.git"
},
"keywords": [
"rql",
"typescript",
"rollun"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rollun-com/rollun-ts-rql/issues"
},
"homepage": "https://github.com/rollun-com/rollun-ts-rql#readme",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^24.9.1",
"jest": "^27.2.4",
"ts-jest": "^27.0.5",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "3.8.3"
},
"dependencies": {
"locutus": "^2.0.15",
"lodash": "^4.17.21"
},
"files": [
"dist/*"
]
}