-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.83 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
{
"name": "@ethcontracts/core",
"version": "1.4.4",
"description": "Readymade ethereum contracts implementation with support for all ethereum library.",
"main": "dist/npm.export.js",
"types": "dist/ts/index.d.ts",
"browser": "dist/npm.export.umd.js",
"react-native": "dist/ethcontracts.node.js",
"scripts": {
"lint": "tslint src/**/*.ts",
"test": "cd test && npm run install:test",
"pack:test": "npm pack && npm run test",
"build:test": "npm run build:dev && npm run pack:test",
"build": "webpack --config webpack/webpack.all.config.js",
"build:pack": "npm run build:dev && npm pack",
"build:dev": "cross-env NODE_ENV=development npm run build",
"build:prod": "cross-env NODE_ENV=production npm run build",
"build:all": "npm run build:dev && npm run build:prod",
"deploy": "npm run lint && npm run clean && npm run build:all && npm run pack:test",
"clean": "del dist",
"prepublishOnly": "npm run deploy",
"build:ci": "npm run deploy",
"debug": "cd test && npm run install:debug",
"build:debug": "npm run build:pack && npm run debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ujjwalguptaofficial/ethcontracts.git",
"absoluteUrl": "https://github.com/ujjwalguptaofficial/ethcontracts"
},
"author": "Ujjwal gupta <https://ujjwalguptaofficial.github.io/>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ujjwalguptaofficial/ethcontracts/issues"
},
"homepage": "https://github.com/ujjwalguptaofficial/ethcontracts#readme",
"devDependencies": {
"@types/node": "^18.11.9",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"del-cli": "^5.0.0",
"ts-loader": "^9.4.1",
"tslint": "^6.1.3",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}