-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
91 lines (91 loc) · 3.04 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
86
87
88
89
90
91
{
"name": "@leam-tech/renovation-core",
"version": "1.2.5",
"description": "A document handling library for the front end",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register ./src/**/*.spec.ts ./src/*.spec.ts --timeout 30000 --exit --reporter mochawesome",
"test:dev": "mocha -r ts-node/register ./src/lib/log.manager.spec.ts --timeout 10000 --reporter mochawesome",
"test:coverage": "tsc && nyc --harmony-async-await --reporter=text-summary --reporter=lcov mocha --reporter mochawesome ./src/**/**.spec.ts ./src/*.spec.ts",
"test:coverage:dev": "tsc && nyc --harmony-async-await --reporter=text-summary --reporter=lcov mocha --reporter mochawesome ./src/utils/request.spec.ts",
"test-dir": "mocha -r ts-node/register",
"document": "typedoc --out ./documentation ./src --ignoreCompilerErrors --mode file",
"pack-dist": "npm run build && shx cp -rf package.json dist && cd dist && npm pack && shx mv *.tgz ../",
"publish-dist": "npm run build && shx cp -rf package.json dist && cd dist && npm publish --access public",
"publish-edge-dist": "npm run build && shx cp -rf package.json dist && cd dist && npm publish --tag edge --access public",
"beautify": "prettier ./src/**/*.ts --write",
"lint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/leam-tech/renovation-core.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Leam Technology Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/leam-tech/renovation-core/issues"
},
"homepage": "https://github.com/leam-tech/renovation-core",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/axios": "^0.14.0",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"@types/nock": "^10.0.2",
"@types/node": "^11.13.5",
"chai": "^4.2.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mochawesome": "^3.1.2",
"mock-local-storage": "^1.1.8",
"nyc": "^14.1.1",
"prettier": "^1.17.1",
"remap-istanbul": "^0.13.0",
"shx": "^0.3.2",
"source-map-support": "^0.5.12",
"ts-node": "^6.1.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.2"
},
"dependencies": {
"@types/js-cookie": "^2.2.5",
"axios": "^0.18.0",
"date-fns": "^1.29.0",
"@types/zxcvbn": "^4.4.0",
"@types/socket.io-client": "^1.4.32",
"debug": "^4.1.1",
"js-cookie": "^2.2.1",
"nock": "^10.0.6",
"nock-record": "^0.3.3",
"qs": "^6.5.2",
"rxjs": "^6.6.3",
"rxjs-compat": "^6.6.3",
"socket.io-client": "^2.2.0",
"zxcvbn": "^4.4.2"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"coverage",
"documentation",
"mochawesome-report"
],
"reporter": [
"html"
]
}
}