This repository has been archived by the owner on May 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
47 lines (47 loc) · 1.6 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
{
"name": "cryptoauth",
"version": "2.0.0",
"description": "Universal web-based login module for dApps",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/bundle.js",
"types": "dist/bundle.d.ts",
"scripts": {
"clean": "rimraf dist es lib",
"prebuild": "npm run clean",
"build": "npm run build:lib & npm run build:umd & npm run build:umd:min",
"build:lib": "tsc --outDir lib --module commonjs",
"build:es": "tsc --outDir es --module es2015",
"build:umd": "npm run build:es && rollup --config rollup.config.js && npm run dts-bundle",
"build:umd:min": "npm run build:es && rollup --config rollup.config.min.js && npm run dts-bundle",
"dts-bundle": "dts-bundle --name dist/bundle --main es --outputAsModuleFolder",
"deploy": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/portis-project/cryptoauth.git"
},
"keywords": [
"blockchain",
"ethereum"
],
"author": "Itay Radotzki <[email protected]>, Tom Teman <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/portis-project/cryptoauth/issues"
},
"homepage": "https://github.com/portis-project/cryptoauth#readme",
"devDependencies": {
"dts-bundle": "0.7.3",
"pascal-case": "2.0.1",
"rimraf": "2.6.1",
"rollup": "0.47.4",
"rollup-plugin-commonjs": "8.1.0",
"rollup-plugin-node-builtins": "2.1.0",
"rollup-plugin-node-globals": "1.1.0",
"rollup-plugin-node-resolve": "3.0.0",
"rollup-plugin-sourcemaps": "0.4.1",
"rollup-plugin-uglify": "2.0.0",
"typescript": "2.7.2"
}
}