-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
81 lines (81 loc) · 1.87 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
73
74
75
76
77
78
79
80
81
{
"name": "oc-client-browser",
"version": "1.9.4",
"description": "OC browser client",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/opencomponents/oc-client-browser.git"
},
"bugs": {
"url": "https://github.com/opencomponents/oc-client-browser/issues"
},
"homepage": "https://github.com/opencomponents/oc-client-browser#readme",
"keywords": [
"oc",
"opencomponents"
],
"author": {
"name": "Nick Balestra",
"email": "nick@balestra.ch"
},
"license": "MIT",
"files": [
"tasks",
"dist",
"vendor",
"src",
"index.js",
"index.d.ts"
],
"scripts": {
"saucelabs": "grunt sauce",
"test": "npm run build && grunt test",
"build": "node tasks/build.js",
"lint": "eslint .",
"precommit": "lint-staged",
"prepublish": "npm run build",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write"
],
"tasks/*.js": [
"prettier --write"
],
"test/*.js": [
"prettier --write"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"fs-extra": "10.0.0",
"grunt": "1.4.1",
"grunt-cli": "1.4.3",
"grunt-karma": "4.0.2",
"husky": "7.0.4",
"jasmine-core": "^2.5.1",
"karma": "6.3.16",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sauce-launcher": "^1.0.0",
"karma-sinon": "^1.0.5",
"lint-staged": "11.2.3",
"load-grunt-tasks": "^4.0.0",
"lodash": "4.17.21",
"phantomjs-prebuilt": "^2.1.12",
"prettier": "2.4.1",
"sinon": "^6.0.0",
"typescript": "4.4.4"
},
"dependencies": {
"uglify-js": "3.14.2",
"universalify": "2.0.0"
}
}