forked from danthareja/contribute-to-open-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 928 Bytes
/
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
{
"name": "contribute-to-open-source",
"description": "Learn how to contribute to open source projects on GitHub",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/danthareja/contribute-to-open-source.git"
},
"engine": {
"node": ">=6.0.0"
},
"keywords": [],
"author": "Dan Thareja <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danthareja/contribute-to-open-source/issues"
},
"homepage": "https://github.com/danthareja/contribute-to-open-source#readme",
"private": true,
"scripts": {
"lint": "eslint src/**/*.js",
"test": "mocha --require test/setup.js src/**/*.test.js"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^3.4.2",
"sinon": "^2.3.2",
"sinon-chai": "^2.10.0"
}
}