-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "@condenast/opensource-check",
"version": "0.0.5",
"description": "Test Runner for Open Source Conventions",
"main": "src/index.js",
"scripts": {
"lint": "eslint --fix .",
"pretest": "npm run lint",
"test": "./bin/index.js && jest"
},
"directories": {
"src": "src",
"test": "src"
},
"bin": {
"opensource-check": "./bin/index.js"
},
"keywords": [
"opensource",
"javascript",
"jest",
"linter"
],
"author": "Gautam Arora",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.6.1",
"jest": "^24.8.0",
"prettier": "^1.10.2"
},
"dependencies": {
"jest-cli": "^24.8.0",
"yargs": "^11.0.0"
},
"repository": "https://github.com/CondeNast/opensource-check",
"preferGlobal": true
}