-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.16 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": "pkg-require",
"version": "0.0.2",
"description": "require node files relative to your package directory",
"main": "index.js",
"scripts": {
"test": "jest",
"watch:test": "jest --watch",
"lint": "eslint .",
"coverage": "jest --coverage",
"coverage:ui": "npm run coverage; open __coverage__/lcov-report/index.html",
"coveralls": "npm run coverage; cat ./__coverage__/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"require",
"package",
"relative"
],
"repository": {
"type": "git",
"url": "https://github.com/Gaafar/pkg-require.git"
},
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.1.2",
"jest": "^19.0.2"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"foo",
"bar"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/__coverage__/**"
],
"coverageDirectory": "__coverage__"
},
"author": "Mostafa Gaafar",
"license": "MIT"
}