-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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": "@sozialhelden/hamster-cache",
"private": false,
"version": "3.1.0",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"author": "Sebastian Felix Zappe <[email protected]>",
"repository": "sozialhelden/hamster-cache",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"bundleDependencies": [],
"deprecated": false,
"description": "A cache featuring eviction based on LRU, maximal item count and TTL.",
"devDependencies": {
"@babel/parser": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"@babel/preset-typescript": "^7.6.0",
"@babel/types": "^7.6.3",
"@types/jest": "^24.0.21",
"babel-jest": "^25.2.6",
"coveralls": "^3.0.0",
"cross-env": "^7.0.0",
"jest": "^25.2.6",
"rimraf": "^3.0.0",
"ts-jest": "^25.3.0",
"tslint": "^6.1.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.3.3333"
},
"scripts": {
"prebuild": "rimraf dist",
"build-mjs": "tsc -d && mv dist/index.js dist/index.mjs",
"build-cjs": "tsc -m commonjs",
"build": "npm run build-mjs && npm run build-cjs && rm dist/*.spec.*",
"start": "tsc -w",
"test": "jest",
"lint": "tslint tslint.json",
"test:watch": "jest --watch",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"format": "tslint --fix src/**/*.ts",
"prettier": "npx prettier --fix src/**/*.ts test/**/*.ts --write --single-quote",
"deploy": "npm run build && npm run test:prod && npm publish --access public"
}
}