-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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": "@fibre/standard-scripts",
"version": "1.0.0",
"description": "Standard Scripts",
"main": "",
"files": [
"dist/src/*.js"
],
"scripts": {
"build": "rimraf dist&&tsc",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"coverage": "nyc --reporter=html --reporter=cobertura mocha -r ts-node/register 'tests/**/*.spec.ts'",
"prepack": "npm run build",
"publish": "npm publish --scope=@fibre --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fibre-App/StandardScripts.git"
},
"author": {
"name": "Fibre",
"email": "contact@fibre-app.com",
"url": "https://fibre-app.com"
},
"prettier": "@fibre/prettier-config",
"license": "UNLICENCED",
"bugs": {
"url": "https://github.com/Fibre-App/StandardScripts/issues"
},
"homepage": "https://github.com/Fibre-App/StandardScripts#readme",
"dependencies": {
"@fibre/types": "0.0.20"
},
"devDependencies": {
"@fibre/prettier-config": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"rimraf": "^3.0.2",
"ts-node": "^8.8.1",
"tslint": "^6.1.3",
"typemoq-continued": "^2.1.3",
"typescript": "^4.0.3"
}
}