-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.41 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "tenure",
"version": "0.0.0-development",
"description": "An manageable LRU cache and configurable eviction policy",
"main": "./dist/tenure.cjs.js",
"browser": "./dist/tenure.umd.min.js",
"module": "./dist/tenure.es.js",
"exports": {
"require": "./dist/tenure.cjs.js",
"import": "./dist/tenure.es.js"
},
"engines": {
"node": ">= 10"
},
"files": [
"dist/"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "rimraf ./dist && npm run build",
"lint": "eslint 'lib/**/*.js' --no-fix",
"lint:fix": "eslint 'lib/**/*.js' --fix",
"prerelease": "npm pack && tar -xvzf *.tgz && rimraf package *.tgz",
"semantic-release": "semantic-release",
"test": "tape -r 'esm' './__tests__/**/*.test.js'",
"test:watch": "nodemon --exec 'npm run test'",
"doc": "jsdoc2md -d 1 --plugin dmd-readable -t README.hbs --files ./lib/* > README.md"
},
"author": "Matthew Zito <matthewtzito@gmail.com> (goldmund)",
"license": "MIT",
"lint-staged": {
"lib/**/*.js": [
"npm run lint",
"npm run test"
]
},
"nodemonConfig": {
"ignore": [
"*"
],
"watch": [
"__tests__/**/*.test.js"
],
"delay": "2500"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/core": "7.13.8",
"@babel/plugin-transform-runtime": "7.13.9",
"@babel/preset-env": "7.13.9",
"@commitlint/cli": "12.0.1",
"@commitlint/config-conventional": "12.0.1",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-node-resolve": "11.2.0",
"babel-eslint": "10.1.0",
"connective-tissue": "1.3.0",
"core-js": "3.9.1",
"cz-conventional-changelog": "3.3.0",
"dmd-readable": "1.2.4",
"eslint": "7.21.0",
"esm": "3.2.25",
"husky": "4.3.8",
"js-heuristics": "1.1.0",
"jsdoc-to-markdown": "7.0.1",
"lint-staged": "10.5.4",
"nodemon": "2.0.7",
"rimraf": "3.0.2",
"rollup": "2.40.0",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "^17.4.3",
"tape": "5.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/MatthewZito/tenure.git"
}
}