-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.3 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
{
"name": "@oaphi/utilities",
"version": "0.5.1",
"description": "Various utilities for JavaScript ES6",
"main": "utilities.js",
"directories": {
"test": "test"
},
"dependencies": {
"underscore": "^1.12.1",
"yargs": "^15.4.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.0",
"jsdoc": "^3.6.5",
"jsdom": "^16.4.0",
"jshint": "^2.12.0",
"mocha": "^7.2.0",
"sinon": "^9.2.1"
},
"scripts": {
"dist": "babel src --out-file dist/dist.js",
"document": "jsdoc -c configs/jsdoc.js",
"test": "mocha --reporter min --watch",
"test-ci": "mocha",
"cycle": "git pull && git push"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Oaphi/Utilities.git"
},
"keywords": [
"utilities",
"javascript",
"es6"
],
"author": "Oleg Valter",
"license": "MIT",
"bugs": {
"url": "https://github.com/Oaphi/Utilities/issues"
},
"mocha": {
"fullTrace": false
},
"chai": {
"config": {
"showDiff": true
}
},
"babel": {
"presets": [
"@babel/env"
]
},
"homepage": "https://github.com/Oaphi/Utilities#readme"
}