-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.4 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
{
"name": "rollun-ts-datastore",
"main": "dist/index.js",
"version": "1.1.0",
"description": "rollun-datastore written in TS",
"dependencies": {
"axios": "^0.19.2",
"lodash": "^4.17.19",
"node-fetch": "^2.6.1",
"rollun-ts-rql": "^0.10",
"rollun-ts-utils": "^0.0.2"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.7.2",
"@types/jest": "^24.0.23",
"@types/nock": "^10.0.3",
"@types/node": "~9.6.5",
"esm": "^3.2.25",
"jest": "^24.9.0",
"nock": "^11.3.3",
"source-map": "^0.7.3",
"ts-jest": "^24.1.0",
"ts-mocha": "^6.0.0",
"ts-node": "^8.0.1",
"tslint": "^5.12.0",
"typescript": "^4.7.4"
},
"scripts": {
"analyse": "node_modules/.bin/tslint --project tslint.json -e **/__tests__/**",
"lint:fix": "node_modules/.bin/tslint --project tslint.json -e **/__tests__/** --fix",
"build": "tsc && babel src --ignore node_modules --out-dir dist --extensions '.ts'",
"run-tests": "jest",
"test": "npm run build && npm run run-tests",
"test:coverage": "jest --coverage --coverageReporters=\"json-summary\" --watchAll=false",
"update:badge": "node ./updateBadge.js"
},
"keywords": [
"rollun"
],
"author": "",
"license": "ISC",
"files": [
"dist/*"
]
}