-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 3.17 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@tangle-frost/iota-qr-data",
"version": "0.0.9",
"description": "Tangle Frost IOTA QR Data",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"iota",
"tangle",
"javascript",
"typescript",
"qr",
"data"
],
"directories": {
"doc": "docs",
"test": "test"
},
"author": "Martyn Janes <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tangle-frost/iota-qr-data.git"
},
"engines": {
"node": ">=8"
},
"scripts": {
"build-clean": "rimraf ./dist/*",
"build-compile": "tsc",
"build-lint": "tslint -p ./tsconfig.json -c ./tslint.json -t verbose",
"build": "npm-run-all build-clean build-compile build-lint",
"test-clean": "rimraf ./coverage/*",
"test-lint": "tslint -p ./test/tsconfig.json -c ./tslint.json -t verbose",
"test-run": "nyc mocha",
"test-post": "replace-in-file \"/(istanbul<\\/a>) at.*/g\" \"$1\" coverage/**/*.html --isRegex",
"test": "npm-run-all test-clean test-lint test-run test-post",
"test-publish": "minicat ./coverage/lcov.info | coveralls",
"docs-clean": "rimraf ./docs/*",
"docs-generate": "typedoc --module commonjs --excludePrivate --theme markdown --readme none --hideGenerator --mode file --target es5 --exclude ./**/src/index.ts --out ./docs ./src",
"docs-post": "replace-in-file \"/(Defined in \\[.*\\]\\(https:\\/\\/github.com\\/.*?\\/.*?\\/).*?\\/.*?\\/(.*)\\)/g\" \"$1tree/master/$2\" docs/**/*.md --isRegex",
"docs": "npm-run-all docs-clean docs-generate docs-post",
"pkg-clean": "rimraf ./pkg/*",
"pkg-dev": "cross-env NODE_ENV=development webpack --progress",
"pkg-prod": "cross-env NODE_ENV=production webpack --progress",
"pkg": "npm-run-all pkg-clean pkg-dev pkg-prod",
"dist": "npm-run-all build test pkg docs"
},
"dependencies": {
"@tangle-frost/iota-core": "0.0.9",
"@tangle-frost/iota-qr-core": "0.0.9",
"@tangle-frost/iota-qr-render": "0.0.9"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@types/chai": "4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.3",
"babel-loader": "^8.0.5",
"babel-plugin-transform-builtin-extend": "1.1.2",
"chai": "4.2.0",
"coveralls": "^3.0.3",
"cross-env": "5.2.0",
"minicat": "1.0.0",
"mocha": "^6.0.2",
"npm-run-all": "4.1.5",
"nyc": "^13.3.0",
"replace-in-file": "^3.4.4",
"rimraf": "^2.6.3",
"source-map-support": "^0.5.11",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-eslint-rules": "5.4.0",
"tslint-microsoft-contrib": "^6.1.0",
"typedoc": "0.14.2",
"typedoc-plugin-markdown": "^1.1.27",
"typescript": "^3.3.3333",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
}
}