-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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": "talk-like-a-pirate",
"description": "Translate text into pirate-speak",
"main": "index.js",
"scripts": {
"test": "npm run lint && jest",
"build": "browserify -s talkLikeAPirate ./index.js > ./talk-like-a-pirate.js",
"lint": "eslint index.js dictionary.js test.js",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/spudly/talk-like-a-pirate.git"
},
"keywords": [
"pirate"
],
"author": "Stephen Sorensen <[email protected]> (http://www.stephenjohnsorensen.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/spudly/talk-like-a-pirate/issues"
},
"homepage": "https://github.com/spudly/talk-like-a-pirate",
"devDependencies": {
"@spudly/eslint-config": "^5.0.2",
"browserify": "^15.0.0",
"eslint": "^4.1.0",
"husky": "^1.0.0",
"jest": "^21.0.0",
"lint-staged": "^4.0.0",
"prettier": "^2.0.0",
"semantic-release": "^8.0.3",
"sinon": "^4.0.0"
},
"files": [
"index.js",
"dictionary.js",
"talk-like-a-pirate.js"
],
"eslintConfig": {
"extends": "@spudly",
"parserOptions": {
"sourceType": "script"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write --print-width=100 --single-quote --bracket-spacing=false",
"git add"
]
}
}