-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 939 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": "@bmacnaughton/string-generator",
"version": "3.0.1",
"description": "generate specific string patterns from simple templates",
"main": "dist/index.js",
"type": "module",
"scripts": {
"prepack": "npm run build && npm run test",
"build": "tsc",
"test": "mocha test/*.test.js",
"test:nyc": "nyc mocha test/*.test.js",
"test:ci": "mkdir -p .nyc_output && nyc -r lcov -r text npm test",
"test:text": "nyc -r text mocha"
},
"files": [
"dist/index.js"
],
"keywords": [
"javascript",
"mock",
"mocking",
"mocks",
"simple",
"strings",
"generator",
"random",
"testing"
],
"author": "Bruce A. MacNaughton <bmacnaughton@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/bmacnaughton/string-generator"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0"
}
}