-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 790 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 790 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
28
29
{
"name": "cs101",
"version": "0.0.1",
"description":
"Basic data structures and algorithms implementation for educational purposes.",
"main": "index.js",
"scripts": {
"test": "tape src/**/*.test.js | faucet",
"cover":
"istanbul cover tape -- src/**/*.test.js && codeclimate-test-reporter < coverage/lcov.info"
},
"author": "Anatoliy Yastreb",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ayastreb/cs101.git"
},
"bugs": {
"url": "https://github.com/ayastreb/cs101/issues"
},
"homepage": "https://github.com/ayastreb/cs101#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.3.3",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"standard": "^8.0.0",
"tape": "^4.6.0"
}
}