forked from hiendv/hireable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "hireable",
"version": "0.2.1",
"description": "Available-for-hire badge",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon src/index.js --exec 'npm run lint && babel-node'",
"test": "mocha --compilers js:babel-register --timeout 5000",
"lint": "eslint --ext .js src build test",
"serve": "node lib/index.js",
"build": "shx rm -rf lib && babel src -d lib && shx cp -r src/styles lib/. && node build/build.js"
},
"private": true,
"author": "Hien Dao Vinh <[email protected]>",
"contributors": [
"Peter Nguyen <peter.nguyen.autodesk.com>",
"Manh Tuan <[email protected]>"
],
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=4"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"dotenv": "^2.0.0",
"koa": "^1.2.1",
"koa-route": "^2.4.2",
"koa-send": "^3.2.0",
"memoizee": "^0.4.1",
"octokat": "^0.4.18"
},
"devDependencies": {
"archiver": "^1.0.1",
"babel-cli": "^6.11.4",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"eslint": "^3.3.1",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^3.0.2",
"nodemon": "^1.10.0",
"shx": "^0.1.4"
}
}