forked from andreassolberg/jso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "jso",
"version": "4.1.2",
"description": "OAuth 2.0 implementation in Javascript",
"main": "dist/jso.js",
"module": "src/JSO.js",
"scripts": {
"test": "true",
"preversion": "npm test",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags && npm publish",
"build": "webpack --mode production --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/vrseraphin/jso.git"
},
"keywords": [
"oauth",
"authentication",
"authorization",
"rest",
"api",
"ajax",
"jquery"
],
"files": [
"src"
],
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": false
}
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@types/core-js": "^2.5.4",
"babel-loader": "^8.2.2",
"qunit": "^2.13.0",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
},
"author": "Andreas Åkre Solberg",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/andreassolberg/jso/issues"
},
"homepage": "https://github.com/andreassolberg/jso",
"dependencies": {
"core-js": "^3.8.1"
}
}