-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "stateless-client",
"version": "0.1.0",
"description": "Javascript client for Stateless",
"main": "index.js",
"scripts": {
"coverage": "istanbul cover node_modules/tape/bin/tape tests/test.js && cat ./coverage/lcov.info | coveralls",
"docs": "documentation build */**.js -f html -o docs",
"istanbul": "istanbul cover node_modules/tape/bin/tape tests/test.js",
"test": "NODE_ENV=test jest"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/formulatedautomation/stateless-client-javascript.git"
},
"author": "Brent Sanders",
"license": "MIT",
"bugs": {
"url": "https://github.com/formulatedautomation/stateless-client-javascript/issues"
},
"homepage": "https://github.com/formulatedautomation/stateless-client-javascript#readme",
"devDependencies": {
"coveralls": "^3.0.0",
"documentation": "^5.3.3",
"istanbul": "^0.4.5",
"moment": "^2.19.1",
"jest": "^26.2.2",
"tape": "^4.8.0"
},
"dependencies": {
"node-fetch": "^2.6.0"
}
}