-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 839 Bytes
/
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
{
"name": "expirable-item",
"version": "1.0.1",
"description": "Expirable items for when you must do something to an item after a certain amount of time",
"main": "dist/index.js",
"scripts": {
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"expire",
"expirable",
"item",
"value"
],
"author": "Aadam Zocolo",
"license": "MIT",
"repository": "https://github.com/AadamZ5/expirable-item",
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"chai": "^4.2.0",
"mocha": "^8.2.1",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}