-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 725 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 725 Bytes
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
{
"name": "comet-backend-engineer-test",
"version": "1.0.0",
"description": "comet backend engineer test",
"dependencies": {},
"engines": {
"node": "8.4.0"
},
"author": "comet team",
"license": "MIT",
"bugs": {
"url": "https://github.com/hellocomet/backend-engineer-test/issues"
},
"homepage": "https://github.com/hellocomet/backend-engineer-test",
"devDependencies": {
"eslint": "5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-formatter-pretty": "1.3.0",
"eslint-plugin-import": "2.13.0",
"jest": "23.3.0"
},
"scripts": {
"lint": "eslint --ext .js --fix --format=node_modules/eslint-formatter-pretty .",
"start": "node ./exercise",
"test": "jest"
}
}