-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
31 lines (31 loc) · 903 Bytes
/
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
{
"name": "frontend-interview-questions",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"tdd": "ava **/*.js -w",
"test": "ava **/*.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bcherny/frontend-interview-questions.git"
},
"author": "Boris Cherny <[email protected]> (https://performancejs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcherny/frontend-interview-questions/issues"
},
"homepage": "https://github.com/bcherny/frontend-interview-questions#readme",
"devDependencies": {
"ava": "^0.21.0",
"eslint": "^4.2.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}