-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1 KB
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": "gl-procamp-base",
"version": "1.0.0",
"description": "Base project for studying in GL Pro Canp academy",
"main": "src/index.js",
"author": "Vladyslav Kampov",
"repository": {
"type": "git",
"url": "git://github.com/vladkampov/gl-jsprocamp-homework.git"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-jest": "^22.0.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^22.0.3",
"path": "^0.12.7"
},
"scripts": {
"lint": "eslint ./src/**/**.js",
"coverage": "jest --coverage --config=conf/jest.config.js",
"test": "jest --config=conf/jest.config.js",
"debug": "node --inspect-brk node_modules/.bin/jest --runInBand --config=conf/jest.config.js",
"test:watch": "jest --watch"
}
}