This repository has been archived by the owner on May 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 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
{
"name": "hireable",
"version": "0.3.0",
"description": "Available-for-hire badge",
"main": "lib/index.js",
"scripts": {
"dev": "nodemon src/index.js --exec 'npm run flow && npm run lint && babel-node'",
"babelify": "babel src -d lib",
"test": "mocha --compilers js:babel-register",
"lint": "eslint --ext .js src build test",
"serve": "node lib/index.js",
"clean": "shx rm -rf lib",
"build": "npm run clean && npm run lint && npm run babelify && node build/build.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"private": true,
"author": "Hien Dao Vinh <[email protected]>",
"contributors": [
"Peter Nguyen <[email protected]>",
"Manh Tuan <[email protected]>"
],
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=4"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"config": "^1.21.0",
"memoizee": "^0.4.1",
"octokat": "^0.4.18",
"send": "^0.14.1",
"url-pattern": "^1.0.2"
},
"devDependencies": {
"archiver": "^1.1.0",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.8.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"flow-bin": "^0.34.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"shx": "^0.1.4",
"sinon": "^1.17.6"
}
}