-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 949 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
34
35
36
37
38
39
{
"name": "@envuso/object-container",
"version": "0.0.4",
"author": {
"name": "iDevelopThings",
"email": "[email protected]",
"url": "https://github.com/idevelopthings"
},
"repository": {
"url": "https://github.com/envuso/object-container",
"type": "git"
},
"license": "MIT",
"description": "Envuso's object 'container'. This is a typesafe store which we can put an object into and have access to some nice methods.",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"serve-dev": "ts-node-dev test-build/index.ts",
"build": "./build.sh",
"dist": "./dist.sh"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/node": "^16.11.7"
}
}