-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "sst",
"version": "1.4.1",
"description": "a set of common tools for node, which are pretty trivial to bring into a new repo.",
"repository": {
"type": "git",
"url": "https://github.com/wh-iterabb-it/sst"
},
"bugs": {
"url": "https://github.com/wh-iterabb-it/sst/issues"
},
"homepage": "https://github.com/wh-iterabb-it/sst#readme",
"license": "GPL-3.0",
"contributors": [
"Beau Bouchard <https://github.com/BeauBouchard>",
"Eric Norris <https://github.com/ericnorris>",
"Eric Turner <https://github.com/codemuch>",
"Ash Kamel <https://github.com/ajkamel>"
],
"scripts": {
"test": "node_modules/.bin/mocha tests/. --recursive",
"test:lint": "eslint .",
"test:lint:fix": "eslint . --fix --ignore-pattern polyfills"
},
"dependencies": {
"winston": "3.13.0"
},
"devDependencies": {
"chai": "4.4.1",
"codecov": "3.8.3",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"mocha": "10.4.0",
"prettier": "3.2.5",
"sinon": "9.2.4",
"sinon-chai": "3.6.0"
}
}