-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
122 lines (122 loc) · 3.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "focus-notifications",
"version": "0.4.1",
"description": "Notification Center extension for focus",
"main": "index.js",
"scripts": {
"babelify": "better-npm-run babelify",
"build": "better-npm-run babelify && better-npm-run copy-sass",
"bundle": "better-npm-run bundle",
"copy-sass": "better-npm-run copy-sass",
"lint": "eslint src",
"prepublish": "npm run build",
"start": "better-npm-run dev-server",
"test": "better-npm-run test"
},
"betterScripts": {
"copy-sass": {
"command": "cd src && find . -name *.scss | xargs tar cvf - | tar xfp - -C ../"
},
"babelify": {
"env": {
"BABEL_ENV": "production"
},
"command": "node script/babelify.js"
},
"test": {
"command": "node ./node_modules/mocha/bin/mocha src/**/__tests__/**/*.js"
}
},
"babel": {
"presets": [
"focus"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/get-focus/focus-notifications.git"
},
"keywords": [
"notification",
"focus"
],
"author": "Focus by Kleegroup <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/get-focus/focus-notifications/issues"
},
"homepage": "https://github.com/get-focus/focus-notifications#readme",
"files": [
"__tests__",
"actions",
"api-mock",
"component",
"config.js",
"container",
"dist",
"example",
"index.html",
"index.js",
"LICENSE",
"package.json",
"README.md",
"reducers",
"src",
"server.js",
"store",
"style",
"test",
"translation",
"util",
"webpack.config.js"
],
"dependencies": {
"isomorphic-fetch": "^2.1.1",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.2.0"
},
"peerDependencies": {
"lodash": ">= 4.15.0",
"material-design-lite": ">= 1.2.1",
"material-design-icons-iconfont": ">= 3.0.3",
"react": ">= 15.3.0 < 16.0.0",
"react-dom": ">= 15.3.0 < 16.0.0",
"react-redux": ">= 4.4.5",
"redux": ">= 3.5.2",
"redux-thunk": ">= 2.1.0"
},
"devDependencies": {
"babel-preset-focus": "^0.5.2",
"better-npm-run": "0.0.5",
"babel-cli": "^6.4.0",
"babel-core": "^6.1.2",
"babel-eslint": "^4.1.4",
"babel-runtime": "^6.0.14",
"chai": "^3.3.0",
"chai-subset": "^1.1.0",
"eslint": "1.5.1",
"eslint-config-focus": "^0.3.0",
"eslint-plugin-filenames": "0.1.1",
"eslint-plugin-react": "3.5.0",
"express": "^4.13.3",
"faker": "^3.0.1",
"i18next": "^4.1.0",
"jsdom": "^6.5.1",
"lodash": "^4.15.0",
"material-design-icons-iconfont": "^3.0.3",
"material-design-lite": "1.3.0",
"mocha": "^2.3.0",
"moment": "^2.14.1",
"nock": "^2.17.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.1",
"react-addons-test-utils": "^15.4.2",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"redux-logger": "^2.7.4",
"sinon": "^1.17.1",
"sinon-chai": "^2.8.0"
}
}