-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "fawkes",
"version": "0.0.6",
"description": "Event sourcing for Phoenix Channels",
"main": "dist/fawkes.js",
"scripts": {
"start": "hjs-dev-server",
"build": "webpack",
"test": "mocha --compilers js:babel-register --recursive \"./src/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/imranismail/fawkes.js.git"
},
"keywords": [
"event-sourcing",
"websocket",
"react",
"redux",
"redux-saga",
"phoenixframework",
"channels"
],
"author": "Imran Ismail",
"license": "MIT",
"bugs": {
"url": "https://github.com/imranismail/fawkes.js/issues"
},
"homepage": "https://github.com/imranismail/fawkes.js#readme",
"devDependencies": {
"babel-core": "^6.6.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.6.5",
"chai": "^3.5.0",
"hjs-webpack": "github:imranismail/hjs-webpack",
"mocha": "^2.4.5"
},
"dependencies": {
"lodash": "^4.9.0"
}
}