-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
73 lines (73 loc) · 1.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hnfavs",
"version": "0.0.12",
"author": "Reactual",
"browser": "dist/hnfavs.js",
"module": "dist/main.js",
"main": "dist/index.js",
"repository": "https://github.com/reactual/hacker-news-favorites-api",
"license": "MIT",
"sideEffects": false,
"private": false,
"contributors": [
{
"name": "Stephen Richardson",
"url": "https://github.com/sbrichardson"
},
{
"name": "Reactual",
"url": "https://github.com/reactual"
}
],
"scripts": {
"dev": "NODE_ENV=development nodemon -q",
"start": "NODE_ENV=production node src/index.js",
"build": "rollup -c ./rollup.config.js",
"test": "jest",
"format": "prettier --write --config package.json \"{,src/**/}*.js\""
},
"jest": {
"testEnvironment": "jsdom",
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 80,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "avoid"
},
"files": [
"dist/hnfavs.js",
"dist/index.js",
"dist/main.js",
"dist/main.js.map"
],
"stdlib": {
"name": "reactual/hnfavs",
"publish": true,
"timeout": 30000
},
"nodemonConfig": {
"watch": "src",
"exec": "node src/main.js"
},
"peerDependencies": {
"x-ray": "^2.3.4"
},
"devDependencies": {
"jest": "^23.2.0",
"nodemon": "^2.0.15",
"prettier": "^1.13.7",
"rollup": "^2.34.2",
"rollup-plugin-terser": "^7.0.2",
"x-ray": "^2.3.4"
}
}