-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
58 lines (58 loc) · 1.23 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.1",
"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"
},
"babel": {
"presets": [
"env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/andreassolberg/jso.git"
},
"keywords": [
"oauth",
"authentication",
"authorization",
"rest",
"api",
"ajax",
"jquery"
],
"files": [
"src"
],
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": false
}
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"qunit": "^2.5.1",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"author": "Andreas Åkre Solberg",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/andreassolberg/jso/issues"
},
"homepage": "https://github.com/andreassolberg/jso",
"dependencies": {}
}