-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "solarjs",
"version": "1.0.0",
"description": "A generic configurable library for making XHR requests",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "gulp",
"start-example": "NODE_PORT=9000 node examples/index"
},
"repository": {
"type": "git",
"url": "[email protected]:sumeetsarkar/solarjs.git"
},
"keywords": [
"Solar",
"XHR"
],
"author": "Sumeet Sarkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/sumeetsarkar/solarjs/issues"
},
"homepage": "https://github.com/sumeetsarkar/solarjs/blob/master/README.md",
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"morgan": "^1.8.2"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-babili": "^0.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-es5": "^1.1.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "^7.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0"
}
}