-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "timetrap_wraplib",
"version": "0.2.5",
"description": "This is a wrapper library for the [Timetrap](https://github.com/samg/timetrap) command line ruby application. The library offers and api for synchronous and asynchronous timetrap system calls.",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest --verbose --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karlredman/node-timetrap_wraplib.git"
},
"keywords": [
"node.js",
"timetrap",
"wrapper",
"library"
],
"author": "Karl N. Redman",
"license": "MIT",
"bugs": {
"url": "https://github.com/karlredman/node-timetrap_wraplib/issues"
},
"homepage": "https://github.com/karlredman/node-timetrap_wraplib#readme",
"dependencies": {
"braces": ">=2.3.1",
"set-value": ">=3.0.1"
},
"devDependencies": {
"@hapi/hoek": "^7",
"babel-cli": "^6.26.0",
"babel-jest": "^25.1.0",
"babel-preset-env": "^1.7.0",
"braces": ">=2.3.1",
"eslint": "^5.16.0",
"extend": ">=3.0.2",
"jest": "^25.1.0",
"lodash": ">=4.17.11",
"marked": "^0.8.0",
"randomatic": ">=3.0.0",
"regenerator-runtime": "^0.13.2",
"sshpk": ">=1.13.2"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}