Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 128ada7

Browse files
committed
Add first pass at package.json
1 parent 59ecc67 commit 128ada7

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed

package.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"name": "@bufferapp/notifications",
3+
"version": "1.9.4-beta-01",
4+
"description": "Display application notifications",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"lint": "eslint --ext .js test/ src/",
8+
"test": "npm run lint && jest",
9+
"test-watch": "jest --watch",
10+
"build": "babel src -d lib",
11+
"prepublish": "babel src -d lib"
12+
},
13+
"author": "[email protected]",
14+
"files": [
15+
"lib",
16+
"src"
17+
],
18+
"dependencies": {
19+
"@bufferapp/components": "3.0.2",
20+
"@bufferapp/keywrapper": "0.2.0",
21+
"react-redux": "5.0.4",
22+
"uuid": "3.0.1"
23+
},
24+
"devDependencies": {
25+
"babel-cli": "^6.26.0",
26+
"babel-eslint": "^8.2.6",
27+
"babel-jest": "^23.6.0",
28+
"babel-preset-env": "^1.7.0",
29+
"deep-freeze": "0.0.1",
30+
"eslint": "^5.3.0",
31+
"eslint-plugin-prettier": "^2.6.2",
32+
"babel-plugin-transform-export-extensions": "^6.22.0",
33+
"jest": "^23.5.0",
34+
"prettier": "^1.14.2"
35+
},
36+
"babel": {
37+
"presets": [
38+
[
39+
"env",
40+
{
41+
"targets": {
42+
"node": "8"
43+
},
44+
"browsers": "> 3%"
45+
}
46+
]
47+
],
48+
"plugins": [
49+
"transform-export-extensions"
50+
]
51+
},
52+
"eslintConfig": {
53+
"parser": "babel-eslint",
54+
"env": {
55+
"node": true,
56+
"es6": true
57+
},
58+
"plugins": [
59+
"prettier"
60+
],
61+
"rules": {
62+
"prettier/prettier": [
63+
2,
64+
{
65+
"singleQuote": true,
66+
"trailingComma": "all",
67+
"semi": false,
68+
"bracketSpacing": true
69+
}
70+
],
71+
"no-unused-vars": 2
72+
}
73+
},
74+
"publishConfig": {
75+
"access": "public"
76+
}
77+
}

0 commit comments

Comments
 (0)