-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 936 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
32
33
34
35
36
37
38
39
40
{
"name": "to-item",
"version": "2.0.2",
"description": "converts object to one item of given set",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text-summary --reporter=json-summary --check-coverage jasmine JASMINE_CONFIG_PATH=./test/spec/test.json",
"test:badge": "npm test && npx make-coverage-badge --output-path ./public/badge.svg"
},
"jest": {
"coverageReporters": [
"json-summary"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavlikm/to-item.git"
},
"keywords": [
"string",
"array",
"object",
"convert",
"map",
"set",
"routing",
"hash"
],
"author": "pavlikm",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavlikm/to-item/issues"
},
"homepage": "https://github.com/pavlikm/to-item#readme",
"dependencies": {},
"devDependencies": {
"jasmine": "^3.7.0",
"nyc": "^15.1.0"
}
}