This repository was archived by the owner on Feb 10, 2023. It is now read-only.
forked from usabilla/api-js-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.78 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"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": "^0.18.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"commitizen": "^2.9.6",
"condition-circle": "^2.0.1",
"coveralls": "^3.0.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "4.19.1",
"eslint-plugin-jest": "^21.17.0",
"husky": "^0.14.3",
"jest": "^23.0.1",
"lint-staged": "7.1.3",
"prettier-eslint-cli": "^4.4.0",
"semantic-release": "15.5.0",
"webpack": "^4.8.3",
"webpack-cli": "3.0.1"
},
"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": "development@usabilla.com",
"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"
}
}