Skip to content

Commit 854548c

Browse files
committed
better package.json
1 parent 776e0da commit 854548c

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed

bin/fiddly bin/fiddly.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
#!/usr/bin/env node
22

3-
4-
53
// run the CLI with the current process arguments
64
require('../src/cli').run(process.argv)

package.json

+23-14
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,29 @@
1313
"posttest": "npm run format",
1414
"watch": "jest --watch",
1515
"coverage": "jest --coverage",
16-
"build": "./bin/fiddly"
16+
"build": "./bin/fiddly.js"
1717
},
1818
"files": [
1919
"LICENSE",
20-
"readme.md",
21-
"docs",
20+
"Readme.md",
2221
"bin",
2322
"src"
2423
],
24+
"keywords": [
25+
"generation",
26+
"markdown",
27+
"static",
28+
"sites",
29+
"fiddly"
30+
],
31+
"author": {
32+
"name": "Sara Vieira",
33+
"email": "[email protected]",
34+
"url": "https://iamsaravieira.com/"
35+
},
36+
"engines": {
37+
"node": ">=8.0.0"
38+
},
2539
"license": "MIT",
2640
"dependencies": {
2741
"clean-css": "^4.2.1",
@@ -40,23 +54,18 @@
4054
"eslint-plugin-promise": "^4.0.1",
4155
"eslint-plugin-standard": "^4.0.0",
4256
"jest": "^23.6.0",
43-
"prettier": "^1.12.1",
44-
"standard": "^12.0.1"
57+
"prettier": "^1.15.3"
4558
},
4659
"jest": {
4760
"testEnvironment": "node"
4861
},
62+
"homepage": "https://github.com/SaraVieira/fiddly",
63+
"bugs": {
64+
"url": "https://github.com/SaraVieira/fiddly/issues",
65+
"email": "[email protected]"
66+
},
4967
"repository": {
5068
"type": "git",
5169
"url": "https://github.com/SaraVieira/fiddly"
52-
},
53-
"standard": {
54-
"env": [
55-
"jest"
56-
]
57-
},
58-
"prettier": {
59-
"semi": false,
60-
"singleQuote": true
6170
}
6271
}

0 commit comments

Comments
 (0)