-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.01 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
{
"name": "raven-core",
"version": "1.0.7",
"description": "Core app structure, with publish and subscribe events. ( Inspired by Meteor.js syntax. )",
"main": "./src/core/core.js",
"author": "Ben Obee",
"license": "ISC",
"scripts": {
"test": "mocha",
"start": "webpack --progress --colors --watch",
"watch": "./node_modules/.bin/webpack -d --watch --colors",
"build": "set PROD_ENV=true&&babel src -d dist&&documentation build --output ./README.md --format md",
"dev": "set PROD_ENV=false&&webpack-dev-server ./test/app.js --hot --watch --colors",
"lint": "eslint source"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benobee/raven-core.git"
},
"keywords": [
"methods",
"publish",
"subscribe",
"javascript",
"es6"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-runtime": "^6.23.0",
"es6-promise": "^4.1.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-watch": "^3.0.1",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^3.0.1",
"html-loader": "^0.5.1",
"imports-loader": "^0.7.1",
"json-loader": "^0.5.4",
"path": "^0.12.7",
"uglify-js": "git+https://github.com/mishoo/UglifyJS2.git#harmony",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.4.2"
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"morphdom": "^2.3.3"
},
"bugs": {
"url": "https://github.com/benobee/raven-core/issues"
},
"homepage": "https://github.com/benobee/raven-core#readme"
}