-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "yankee-doodle",
"version": "2.0.4",
"description": "Yank values from a given object via a specified schema",
"author": "marziply [email protected]",
"type": "module",
"scripts": {
"test": "bin/test.sh",
"build": "rollup -c",
"lint": "eslint ./src/*.js"
},
"main": "./index.js",
"exports": {
".": "./index.js",
"./configure": "./src/configure.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marziply/yankee-doodle.git"
},
"keywords": [
"yank",
"yanked",
"pick",
"picked",
"pluck",
"plucked",
"schema"
],
"bugs": {
"url": "https://github.com/marziply/yankee-doodle/issues"
},
"engines": {
"node": ">=14.x",
"browsers": "> 0.25%"
},
"homepage": "https://github.com/marziply/yankee-doodle#readme",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.14.9",
"@babel/eslint-plugin": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"eslint": "^7.32.0",
"husky": "^4.2.1",
"jest": "^27.0.6",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2"
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test"
}
}
}