-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 825 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
30
31
32
33
34
35
36
37
{
"name": "@ryanlsmith/string_lib",
"version": "2.1.5",
"description": "A string Library for node",
"main": "umd/index.js",
"module": "esm/index.js",
"files": [
"esm/*",
"emd/*"
],
"scripts": {
"prepare": "rollup --config",
"test": "jest",
"coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanlsmith4/strings_lib"
},
"author": "Ryan Smith",
"license": "MIT",
"dependencies": {
"codecov.io": "^0.1.6"
},
"devDependencies": {
"codecov": "^3.6.1",
"coveralls": "^3.0.7",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"rollup": "^1.26.3",
"rollup-plugin-terser": "^5.1.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}