-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 969 Bytes
/
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
{
"name": "snipsync",
"version": "1.11.0",
"description": "Sync docs with github repo code snippets",
"main": "index.js",
"repository": "[email protected]:temporalio/snipsync.git",
"author": "Alex Garnett <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"dev": "node index.js",
"lint": "eslint . --ext .js"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"anzip": "^0.2.0",
"arraybuffer-to-buffer": "^0.0.7",
"cli-progress": "^3.8.2",
"dedent": "^1.5.3",
"glob": "^7.1.6",
"js-logger": "^1.6.1",
"line-reader": "^0.4.0",
"node-read-yaml": "^1.0.1",
"path": "^0.12.7",
"readdirp": "^3.4.0",
"rimraf": "^3.0.2"
},
"files": [
"index.js",
"src"
],
"bin": {
"snipsync": "index.js"
},
"devDependencies": {
"babel-eslint": "8.2.1",
"eslint": "^8.20.0",
"eslint-plugin-jest": "^26.6.0",
"jest": "^28.1.3"
}
}