-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "@hamistudios/octo",
"version": "1.0.3",
"description": "simplistic nodejs express web framework",
"main": "./lib/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build:babel": "babel src -d lib",
"build": "npm-run-all clean build:babel",
"build:watch": "babel src -d lib --watch",
"test:eslint": "eslint src tests",
"test:jest": "./node_modules/.bin/jest --coverage --verbose",
"test": "npm-run-all test:eslint test:jest",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/HamiStudios/octo.git"
},
"keywords": [
"web framework",
"framework",
"express"
],
"author": "HamiStudios",
"license": "MIT",
"bugs": {
"url": "https://github.com/HamiStudios/octo/issues"
},
"homepage": "https://github.com/HamiStudios/octo#readme",
"dependencies": {
"circle-assign": "^1.0.8",
"dot-prop": "^4.2.0",
"express": "^4.16.3"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"npm-run-all": "^4.1.3"
},
"jest": {
"testEnvironment": "node"
}
}