-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.7 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
{
"name": "usabilla-api",
"version": "0.0.0-development",
"description": "Node client for Usabilla public API",
"main": "dist/api-js-node.js",
"module": "lib/index.js",
"dependencies": {
"axios": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"commitizen": "^4.3.0",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8",
"eslint-plugin-jest": "^28",
"husky": "^9.0.5",
"jest": "^29.5.0",
"lint-staged": "^15.0.1",
"prettier-eslint-cli": "^8.0.1",
"webpack": "^5",
"webpack-cli": "^5"
},
"scripts": {
"start": "webpack -w --mode development",
"build": "webpack --mode production",
"prepublish": "yarn build",
"test": "jest",
"test:watch": "yarn test --watch",
"test:ci": "yarn test --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"lint": "eslint ./lib ./test ./example/example.js",
"lint:fix": "yarn lint --fix",
"posttest": "yarn lint",
"semantic-release": "semantic-release",
"commit": "git-cz",
"precommit": "lint-staged",
"format": "prettier-eslint --write --single-quote"
},
"repository": {
"type": "git",
"url": "https://github.com/usabilla/api-js-node"
},
"author": {
"name": "Usabilla",
"email": "[email protected]",
"url": "http://developers.usabilla.com"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"yarn format",
"git add"
]
},
"jest": {
"testEnvironment": "node"
}
}