-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
69
70
71
72
{
"name": "survey-monkey-oauth",
"version": "1.0.0",
"description": "survey monkey oauth authencation.",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"sideEffects": "false",
"files": [
"dist"
],
"scripts": {
"lint": "eslint \"**/*.{js,jsx}\" && prettier \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix && prettier \"**/*.js\" --write",
"prebuild": "rimraf dist",
"build": "npm run prebuild && rollup -c",
"test": "tap",
"test:fix": "tap --snapshot",
"test:coverage": "tap --coverage-report=html",
"posttest": "tap --coverage-report=text-lcov | codecov",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint",
"npm run test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/amareshsm/survey-monkey-oauth.git"
},
"keywords": [
"survey monkey npm",
"survey monkey oauth",
"survey monkey oauth npm",
"survey monkey api npm"
],
"author": "AMARESH S M",
"license": "ISC",
"homepage": "https://github.com/amareshsm/survey-monkey-oauth",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"codecov": "^3.8.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.38.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"tap": "^14.11.0"
},
"dependencies": {
"axios": "^0.21.1",
"qs": "^6.9.6"
}
}