-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 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
{
"name": "@schibsted/account-sdk-browser",
"version": "5.1.0",
"description": "Schibsted account SDK for browsers",
"main": "index.js",
"type": "module",
"scripts": {
"build": "./build.sh",
"clean": "rimraf .cache coverage dist docs",
"docs": "rimraf docs && jsdoc -c ./jsdoc.conf.json --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"cover": "jest --coverage",
"preversion": "npm run lint && npm test",
"version": "node ./scripts/genversion.js && git add src/version.js",
"postversion": "git push && git push --tags"
},
"author": "",
"license": "MIT",
"dependencies": {
"tiny-emitter": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.23.2",
"babel-loader": "^8.1.0",
"core-js": "^3.6.5",
"docdash": "git+https://github.com/torarvid/docdash.git#v0.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^26.4.2",
"jest-junit": "^10.0.0",
"jsdoc": "^3.6.11",
"node-fetch": "^2.6.0",
"regenerator-runtime": "^0.13.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"whatwg-url": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/schibsted/account-sdk-browser.git"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 3,
"targets": {
"browsers": [
"> 1%",
"last 10 chrome major versions",
"last 10 firefox major versions",
"last 10 opera major versions",
"last 2 safari major versions",
"last 2 ios major versions",
"last 2 ie major versions",
"last 5 edge major versions"
]
}
}
]
]
},
"typings": "index.d.ts"
}