-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "tfs-18f-js",
"version": "1.0.0",
"description": "TFS Frontend JS Homework",
"private": true,
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run ava",
"lint": "npm run lint:es && npm run lint:css",
"lint:fix": "npm run lint:es:fix",
"lint:es": "eslint **/*.js",
"lint:es:fix": "eslint --fix **/*.js",
"lint:css": "stylelint **/*.css",
"ava": "ava tests/test-*.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/tfs-18f-frontend/javascript.git"
},
"author": "Dmitry Korolev <dmitry@korolev.dk> (https://korolev.dk)",
"license": "UNLICENSED",
"bugs": {
"url": "https://gitlab.com/tfs-18f-frontend/javascript/issues"
},
"homepage": "https://gitlab.com/tfs-18f-frontend/javascript#README",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"ava": "1.2.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0"
},
"dependencies": {
"delay": "^4.1.0"
}
}