-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
45 lines (45 loc) · 1014 Bytes
/
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
{
"name": "stein-js-client",
"version": "0.0.2",
"description": "JavaScript client library to interact with the Stein API",
"main": "index.js",
"unpkg": "dist/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify --standalone SteinStore index.js -o dist/bundle.js -t babelify"
},
"repository": {
"type": "git"
},
"keywords": [
"stein",
"google sheets",
"form",
"javascript",
"js",
"client",
"api"
],
"author": "Stein <hello@steinhq.com>",
"babel": {
"presets": [
"@babel/preset-env",
"minify"
]
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.3",
"babel-preset-minify": "^0.5.0",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"deamdify": "^0.3.0",
"deglobalify": "^0.2.0",
"uglifyify": "^5.0.1"
},
"dependencies": {
"isomorphic-unfetch": "^3.0.0",
"universal-base64": "^2.0.1"
}
}