-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "@cley_faye/js-weakcache",
"version": "1.0.1",
"description": "Cache system sort of similar to WeakMap but with some behavior control",
"type": "module",
"scripts": {
"test": "mocha",
"grunt": "npx grunt --gruntfile Gruntfile.cjs",
"build": "npm run grunt -- clean build",
"prepack": "npm run build",
"check": "npx eslint . && npx tsc --noEmit"
},
"mocha": {
"spec": [
"src/**/*.test.ts"
],
"node-option": [
"loader=ts-node/esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/CleyFaye/js-weakcache.git"
},
"keywords": [
"cache",
"javascript",
"weakmap"
],
"author": "Gabriel Paul \"Cley Faye\" Risterucci",
"license": "MIT",
"bugs": {
"url": "https://github.com/CleyFaye/js-weakcache/issues"
},
"homepage": "https://github.com/CleyFaye/js-weakcache#readme",
"files": [
"lib/**/*.js",
"lib/**/*.d.ts"
],
"devDependencies": {
"@keeex/eslint-config": "^1.7.4",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"grunt": "^1.4.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-run": "^0.8.1",
"load-grunt-tasks": "^5.1.0",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}