-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "schemawax",
"version": "1.0.12",
"description": "Tiny typed data decoder",
"homepage": "https://github.com/michaljanocko/schemawax",
"repository": "[email protected]:michaljanocko/schemawax.git",
"author": "Michal Janočko <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"test": "jest",
"prepublish": "tsc && uglifyjs dist/index.js -o dist/index.js"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7",
"eslint-config-standard-with-typescript": "^20.0.0",
"eslint-plugin-import": "^2",
"eslint-plugin-node": "^11",
"eslint-plugin-promise": "^4",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4",
"uglify-js": "^3.14.3"
},
"dependencies": {}
}