Skip to content

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Nov 22, 2017
1 parent 544343d commit 482707d
Showing 1 changed file with 30 additions and 10 deletions.
40 changes: 30 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
{
"name": "secret",
"version": "0.0.2",
"description":
"send a message through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.",
"version": "0.0.3",
"description": "send a message through a safe, private, and encrypted link that automatically expires to ensure your stuff does not remain online forever.",
"main": "index.js",
"repository": "bukinoshita/secret.git",
"author": "Bu Kinoshita <[email protected]>",
"license": "MIT",
"keywords": ["secret", "getsecret", "safe", "private", "encrypted"],
"keywords": [
"secret",
"getsecret",
"safe",
"private",
"encrypted"
],
"scripts": {
"start": "NODE_ENV=production node server",
"dev": "node server",
Expand Down Expand Up @@ -35,27 +40,42 @@
"xo": "^0.18.2"
},
"babel": {
"presets": ["next/babel"],
"presets": [
"next/babel"
],
"env": {
"development": {
"plugins": ["inline-dotenv"]
"plugins": [
"inline-dotenv"
]
},
"production": {
"plugins": ["transform-inline-environment-variables"]
"plugins": [
"transform-inline-environment-variables"
]
}
}
},
"xo": {
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"react/no-unescaped-entities": 0,
"react/prop-types": 0,
"react/display-name": 0
},
"ignores": ["node_modules", "static/*.js"],
"globals": ["document"]
"ignores": [
"node_modules",
"static/*.js"
],
"globals": [
"document"
]
},
"lint-staged": {
"*.js": [
Expand Down

0 comments on commit 482707d

Please sign in to comment.