forked from architect/utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.22 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.22 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@architect/utils",
"version": "1.5.3",
"description": "Common utility functions",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/architect/utils.git"
},
"scripts": {
"test": "npm run lint && npm run test:unit:updater && npm run test:unit",
"test:unit": "tape test/*-test.js test/**/*-test.js | tap-spec",
"test:unit:updater": "tape test/updater/test.js",
"lint": "npx eslint .",
"rc": "npm version prerelease --preid RC"
},
"author": "Brian LeRoux <b@brian.io>",
"license": "Apache-2.0",
"dependencies": {
"@architect/parser": "~2.1.1",
"@smallwins/validate": "~4.3.0",
"chalk": "~4.0.0",
"glob": "~7.1.6",
"is-domain-name": "~1.0.1",
"mkdirp": "~1.0.3",
"path-sort": "~0.1.0",
"restore-cursor": "~3.1.0",
"run-parallel": "~1.1.9",
"run-series": "~1.1.8",
"run-waterfall": "~1.1.6",
"sha": "~3.0.0"
},
"devDependencies": {
"aws-sdk": "^2.641.0",
"eslint": "^6.8.0",
"husky": "^4.2.3",
"proxyquire": "^2.1.3",
"sinon": "^9.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.13.2",
"temp-write": "^4.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
}
}