-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.85 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"author": "Anwar Hahj Jefferson-George <[email protected]>",
"dependencies": {
"dayjs": "^1.8.14",
"esm": "^3.2.25",
"sade": "^1.4.2"
},
"description": "Context stamping.",
"devDependencies": {
"ava": "^1.4.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.2",
"nyc": "^14.1.1",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
},
"keywords": [
"constamp"
],
"license": "Unlicense",
"main": "./src/index.js",
"module": "./src/main.js",
"name": "constamp",
"repository": {
"type": "git",
"url": "git+https://github.com/anwarhahjjeffersongeorge/constamp.git"
},
"scripts": {
"clean": "rm -rf .nyc_output coverage docs",
"coverage": "codecov",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=html ava",
"wtest": "ava --watch",
"preversion": "npm test && npm run doc",
"postversion": "git push",
"predoc": "rm -rf docs",
"doc": "jsdoc src/main.js -d ./docs/ -c ./jsdoc.json -r ./README.md --verbose -t ./node_modules/ink-docstrap/template",
"pretest": "clear && standard --fix \"index.js\" \"main.js\" | snazzy"
},
"version": "1.0.3",
"ava": {
"files": [
"test/**/*.test.js"
],
"sources": [
"./src/**/*.js"
],
"color": true,
"cache": true,
"concurrency": 5,
"failFast": true,
"failWithoutAssertions": true,
"tap": true,
"verbose": true,
"compileEnhancements": true,
"require": [
"esm"
]
},
"standard": {
"parser": "babel-eslint"
},
"bin": {
"constamp": "./src/cli.js"
},
"bugs": {
"url": "https://github.com/anwarhahjjeffersongeorge/constamp/issues"
},
"homepage": "https://github.com/anwarhahjjeffersongeorge/constamp#readme",
"directories": {
"test": "test"
}
}