-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
68 lines (68 loc) · 1.92 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "percy-client",
"version": "3.9.0",
"description": "JavaScript API client library for Percy (https://percy.io).",
"main": "dist/main.js",
"scripts": {
"build": "npm run build:compile && npm run build:browserify",
"build:browserify": "browserify --standalone percy-client dist/main.js -o dist/bundle.js",
"build:compile": "babel src --presets babel-preset-es2015 --out-dir dist",
"debug": "mocha debug --require babel-core/register",
"lint": "./node_modules/eslint/bin/eslint.js .",
"lint:fix": "./node_modules/eslint/bin/eslint.js . --fix",
"prepublish": "npm run build",
"tdd": "mocha --require babel-core/register --watch",
"test": "mocha --require babel-core/register"
},
"lint-staged": {
"*.{js,css}": [
"./node_modules/eslint/bin/eslint.js --fix --color",
"git add"
]
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/percy/percy-js.git"
},
"author": "Perceptual Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/percy/percy-js/issues"
},
"homepage": "https://github.com/percy/percy-js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.3.13",
"browserify": "^16.2.3",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"mocha": "^7.1.0",
"nock": "^10.0.6",
"prettier": "^1.12.1",
"sinon": "^9.0.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"bluebird-retry": "^0.11.0",
"dotenv": "^8.1.0",
"es6-promise-pool": "^2.5.0",
"jssha": "^2.1.0",
"regenerator-runtime": "^0.13.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"walk": "^2.3.14"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}