-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 892 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 892 Bytes
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
{
"name": "mini",
"version": "0.1.0",
"description": "mini",
"author": "Jonathan Warning",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jwarning/mini"
},
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.config.js && webpack --config webpack.config.example.js",
"lint": "eslint src/index.js",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"inferno-create-element": "^0.7.7",
"inferno-dom": "^0.7.7",
"isomorphic-fetch": "^2.2.1",
"webpack": "^1.13.1"
},
"dependencies": {
"rxjs": "^5.0.0-beta.8"
}
}