-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.9 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
{
"name": "goodforms",
"version": "0.9.2",
"description": "Javascript to validate email addresses, optionally using the paid Goodforms service",
"keywords": [
"email",
"verification",
"verify",
"domain",
"dns"
],
"browser": "./dist/verify.js",
"exports": "./index.js",
"unpkg": "./dist/verify.js",
"files": [
"/dist/verify.js",
"/dist/verify.js.map",
"/*.js",
"/*.css",
"/*.html"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "SERVERIP=$(ifconfig en0|grep 'inet '|cut -d ' ' -f 2); echo \"SERVERIP IS: $SERVERIP\"; rollup -c --watch --environment SNIPPET_ENV:dev --environment SERVERIP:$SERVERIP",
"version": "sed s/%VERSION%/$npm_package_version/ README_tempate.md > README.md; git add README.md",
"compress": "uglifyjs --source-map -o dist/dev-verify.min.js dist/dev-verify.js",
"prodwatch": "SERVERNAME=https://api.goodforms.com rollup -c --watch --environment SNIPPET_ENV:production",
"production": "SERVERNAME=https://api.goodforms.com rollup -c --environment SNIPPET_ENV:production && uglifyjs --source-map \"url='https://unpkg.com/goodforms@$npm_package_version/dist/verify.js.map',content=inline\" -o dist/verify.js dist/prod-verify.js"
},
"repository": {
"type": "git",
"url": "https://github.com/grokability/goodforms-js.git"
},
"author": "[email protected]",
"license": "MIT-0",
"dependencies": {
"browser-jsonp": "^1.1.5",
"micromodal": "^0.4.6",
"style-inject": "^0.3.0"
},
"devDependencies": {
"regenerator-runtime": "^0.13.7",
"rollup": "^1.32.1",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-polyfill": "^3.0.0",
"rollup-plugin-postcss": "^2.9.0",
"@rollup/plugin-replace": "^2.2.0",
"rollup-plugin-html": "^0.2.1",
"uglify-js": "^3.12.1"
}
}