-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "@cloudstek/cache",
"version": "2.0.0",
"description": "Simple key/value (cache) store.",
"author": "Maarten de Boer <maarten@cloudstek.nl>",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"fs-extra": "^9.0.0",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/mockdate": "^2.0.0",
"@types/node": "^13.11.0",
"ava": "^3.6.0",
"coveralls": "^3.0.3",
"del-cli": "^3.0.0",
"mockdate": "^2.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"ts-node": "^8.1.0",
"tslint": "^6.1.1",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "npm-run-all -p clean:*",
"clean:dist": "del-cli dist",
"clean:test": "del-cli build",
"clean:coverage": "del-cli coverage .nyc_output",
"build": "npm-run-all -p clean:test clean:coverage && tsc",
"watch": "npm-run-all -p clean:test clean:coverage && tsc --watch",
"build:dist": "npm-run-all -s clean:dist && tsc -p tsconfig.dist.json",
"test": "npm-run-all -s clean:coverage && nyc ava",
"test:ci": "npm-run-all -p clean:* -s build && nyc -s ava && nyc report --reporter=text-lcov | coveralls",
"lint": "npm-run-all -l -p lint:*",
"lint:src": "tslint src/**/*.ts",
"lint:test": "tslint test/**/*.ts"
},
"ava": {
"files": [
"build/test/**/*"
]
}
}