-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "notificationsjs-react",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/ example/example.js",
"build-umd": "rollup -c && MINIFY=true rollup -c",
"build-umd-watch": "rollup -c -w",
"build-cjs": "babel -d lib src",
"build-all": "npm run build-umd && npm run build-cjs",
"test": "npm run lint"
},
"keywords": [
"notificationjs",
"pusher",
"react"
],
"author": "Jack Franklin",
"license": "MIT",
"devDependencies": {
"babel": "6.5.2",
"babel-cli": "6.10.1",
"babel-preset-es2015-rollup": "1.1.1",
"babel-preset-react": "6.11.0",
"eslint": "2.13.1",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "1.3.2",
"eslint-plugin-react": "5.2.2",
"eslint-plugin-standard": "1.3.2",
"live-server": "1.0.0",
"rollup": "0.33.0",
"rollup-plugin-babel": "2.6.1",
"rollup-plugin-commonjs": "3.1.0",
"rollup-plugin-node-resolve": "1.7.1",
"rollup-plugin-uglify": "1.0.1",
"rollup-watch": "2.4.0"
},
"dependencies": {
"notificationsjs": "0.1.3",
"object-assign": "4.1.0",
"react": "15.1.0",
"react-dom": "15.1.0"
}
}