forked from netlify/gotrue-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.51 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
{
"name": "gotrue-js",
"description": "GoTrue API client for JavaScript",
"version": "0.9.22",
"author": "Mathias Biilmann Christensen",
"bugs": "https://github.com/netlify/micro-api-client-lib/issues",
"dependencies": {
"micro-api-client": "^3.2.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^8.2.1",
"babel-plugin-syntax-object-rest-spread": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.6.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^4.15.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.1.2",
"prettier": "^1.10.1",
"uglify-js": "^2.6.2"
},
"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 [ env ] --plugins syntax-object-rest-spread,transform-object-rest-spread ] | uglifyjs > browser/gotrue.js",
"compile": "babel src -d lib",
"format": "eslint . --fix && prettier --write 'src/**/*.js'",
"prepublish": "npm run compile",
"prettier-preview": "prettier --list-different 'src/**/*.js'",
"test": "eslint .",
"version": "npm run babelify && git add browser/gotrue.js"
}
}