-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "ibm-appconfiguration-js-client-sdk",
"version": "0.2.0-beta.1",
"description": "IBM Cloud App Configuration JavaScript Client SDK",
"keywords": [
"client-sdk",
"appconfiguration"
],
"homepage": "https://github.com/IBM/appconfiguration-js-client-sdk#readme",
"bugs": {
"url": "https://github.com/IBM/appconfiguration-js-client-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IBM/appconfiguration-js-client-sdk.git"
},
"license": "Apache-2.0",
"author": "IBM",
"main": "dist/src/index.js",
"unpkg": "dist/appconfiguration.js",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && npm run build:tsc && npm run build:webpack",
"build:tsc": "tsc",
"build:webpack": "webpack",
"clean": "del-cli dist/*",
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"murmurhash": "^2.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"del-cli": "^4.0.1",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.5",
"ts-loader": "^9.3.0",
"typedoc": "^0.23.5",
"typescript": "^4.7.3",
"webpack": "^5.87.0",
"webpack-cli": "^4.10.0"
}
}