-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 828 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 828 Bytes
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
{
"name": "veritone-sdk",
"private": true,
"version": "1.0.0",
"description": "Tools for Veritone platform developers",
"repository": "https://github.com/veritone/veritone-sdk.git",
"author": "Mitch Robb <mrobb@veritone.com>",
"license": "Apache-2.0",
"scripts": {
"buildall": "yarn wsrun build --fast-exit --exclude-missing --stages",
"publish-dev": "./publish-dev.sh",
"lintall": "yarn wsrun lint --fast-exit --exclude-missing",
"testall": "yarn wsrun test --fast-exit --exclude-missing",
"formatall": "yarn wsrun format --exclude-missing"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lintall && yarn run testall"
}
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"husky": "^0.15.0-rc.13",
"prettier": "1.12.1",
"wsrun": "^2.0.0"
}
}