forked from marziply/yankee-doodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "yankee-doodle",
"version": "1.5.4",
"scripts": {
"test": "jest ./tests",
"build": "NODE_ENV=production webpack",
"build:commit": "npm run build && npm run commit",
"commit": "git add ./dist/yankee-doodle.min.js && git commit --amend --no-edit --no-verify"
},
"description": "Yank values from a given object via a specified schema",
"author": "Hayden Perry [email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/bakewellcake/yankee-doodle.git"
},
"main": "index.js",
"keywords": [
"yank",
"yanked",
"pick",
"picked",
"pluck",
"plucked",
"schema"
],
"bugs": {
"url": "https://github.com/bakewellcake/yankee-doodle/issues"
},
"homepage": "https://github.com/bakewellcake/yankee-doodle#readme",
"license": "MIT",
"devDependencies": {
"husky": "^4.2.1",
"jest": "^25.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}