-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "oc-client",
"version": "4.0.2",
"description": "Node.js oc client",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/oc-client-node"
},
"author": "Matteo Figus",
"license": "MIT",
"bugs": {
"url": "https://github.com/opencomponents/oc-client-node/issues"
},
"homepage": "https://github.com/opencomponents/oc-client-node",
"scripts": {
"test": "mocha test/**/*.js",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.js": [
"prettier-eslint --write",
"git add"
],
"test/unit/**/*.js": [
"prettier-eslint --write",
"git add"
],
"test/acceptance/**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"devDependencies": {
"chai": "^4.3.4",
"cheerio": "0.22.0",
"husky": "7.0.2",
"injectr": "0.5.1",
"lint-staged": "11.2.3",
"mocha": "9.1.3",
"oc": "0.49.2",
"prettier-eslint-cli": "5.0.1",
"sinon": "^11.1.2"
},
"dependencies": {
"minimal-request": "3.0.0",
"nice-cache": "0.0.5",
"oc-client-browser": "1.5.4",
"oc-empty-response-handler": "1.0.2",
"oc-template-es6": "1.0.6",
"oc-template-handlebars": "6.0.24",
"oc-template-jade": "7.0.5"
},
"engines": {
"node": ">=12"
}
}