-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 993 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
40
{
"name": "@enterwell/enum-helper",
"version": "2.0.0",
"description": "JavaScript enum helper.",
"license": "MIT",
"repository": "https://github.com/Enterwell/js-enum-helper",
"author": {
"name": "Enterwell",
"email": "[email protected]",
"url": "http://enterwell.net"
},
"engines": {
"node": ">=5"
},
"public": true,
"scripts": {
"check-types": "tsc",
"test": "npm run build && npm run check-types && jest",
"test:watch": "npm test -- --watch",
"build": "babel --extensions \".ts\" src/ -d dist && tsc --noEmit false --emitDeclarationOnly "
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
""
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"typescript": "^4.6.3"
}
}