-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
59 lines (59 loc) · 1.98 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
{
"name": "gotrue-js",
"description": "GoTrue API client for JavaScript",
"version": "0.9.28",
"author": "Mathias Biilmann Christensen",
"bugs": "https://github.com/netlify/micro-api-client-lib/issues",
"dependencies": {
"micro-api-client": "^3.2.1"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browserify": "^16.0.0",
"cross-env": "^7.0.2",
"eslint": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"semantic-release": "^17.1.1",
"typescript": "^4.0.0",
"uglify-js": "^3.0.0"
},
"homepage": "https://github.com/netlify/gotrue-js",
"keywords": [
"api",
"gotrue",
"identity",
"netlify"
],
"license": "MIT",
"main": "lib/index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/netlify/gotrue-js.git"
},
"scripts": {
"babelify": "browserify src/index.js -t [ babelify --presets [ @babel/preset-env ] --plugins [ @babel/plugin-proposal-object-rest-spread ] ] | uglifyjs > browser/gotrue.js",
"compile": "babel src -d lib",
"format": "eslint . --fix && prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"prettier-preview": "prettier --list-different \"src/**/*.js\"",
"prepublish": "npm run compile",
"lint": "eslint .",
"test": "run-s lint format:check",
"version": "npm run babelify && git add browser/gotrue.js",
"release": "yarn install && yarn run version && cross-env CI=true semantic-release && npm publish"
}
}