-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1014 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
{
"name": "@poap/sane-data",
"private": false,
"version": "0.0.7",
"description": "A collection of data validations and sanetisers",
"main": "./src/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/node-esm/index.js",
"exports": {
"node": {
"require": "./dist/node-cjs/index.js",
"import": "./dist/node-esm/index.js"
},
"development": "./src/index.js",
"default": "./src/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix src",
"publish:local": "yalc publish --push",
"build": "node esbuild.mjs"
},
"author": "Mentor <[email protected]> (http://github.com/actuallymentor)",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@poap/skunk-linter": "^0.0.3",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"yalc": "^1.0.0-pre.53"
}
}