-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.93 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
54
55
56
57
58
59
60
{
"name": "@tangle-frost/iota-qr-lib",
"version": "0.0.9",
"description": "Tangle Frost QR Code All in One Library",
"main": "pkg/iota-qr-lib.js",
"typings": "pkg/iota-qr-lib.d.ts",
"keywords": [
"iota",
"interface",
"tangle",
"javascript",
"typescript",
"API"
],
"directories": {
"doc": "docs",
"test": "test"
},
"author": "Martyn Janes <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tangle-frost/iota-qr-lib.git"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build-clean": "rimraf ./dist/*",
"build-compile": "tsc",
"build": "npm-run-all build-clean build-compile",
"pkg-clean": "rimraf ./pkg/*",
"pkg-dev-all": "cross-env NODE_ENV=development LIB_VER=all webpack --progress",
"pkg-prod-all": "cross-env NODE_ENV=production LIB_VER=all webpack --progress",
"pkg-dts": "node ./dist/build-dts.js",
"pkg-finalise": "rimraf ./pkg/bootstrap.js",
"pkg": "npm-run-all pkg-clean pkg-dev-all pkg-prod-all pkg-dts pkg-finalise",
"dist": "npm-run-all build pkg"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@tangle-frost/iota-core": "0.0.9",
"@tangle-frost/iota-qr-core": "0.0.9",
"@tangle-frost/iota-qr-data": "0.0.9",
"@tangle-frost/iota-qr-render": "0.0.9",
"@types/node": "^11.11.3",
"babel-loader": "8.0.5",
"babel-plugin-transform-builtin-extend": "1.1.2",
"cross-env": "5.2.0",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3",
"typescript": "^3.3.3333",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "3.2.3"
}
}