-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "@spearly/sdk-js",
"version": "2.0.2",
"description": "",
"main": "dist/cjs/sdk-js.js",
"module": "dist/esm/sdk-js.js",
"unpkg": "dist/umd/sdk-js.js",
"types": "dist/cjs/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts,.tsx,.vue --ignore-path .eslintignore . || exit 0",
"build": "rollup -c",
"prepare": "husky install",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unimal-jp/spearly-sdk-js.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/unimal-jp/spearly-sdk-js/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/unimal-jp/spearly-sdk-js#readme",
"devDependencies": {
"@nuxt/types": "^2.15.7",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/jest": "^27.0.1",
"@types/js-cookie": "^3.0.3",
"@types/uuid": "^9.0.2",
"@typescript-eslint/parser": "^4.29.1",
"commander": "^8.1.0",
"esbuild-jest": "^0.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.16.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^13.2.1",
"prettier": "^2.3.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"semver": "^7.3.5",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
},
"dependencies": {
"axios": "^1.3.4",
"js-cookie": "^3.0.5",
"uuid": "^9.0.0"
}
}