-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.08 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "trello-helper",
"version": "3.0.3",
"engines": {
"node": ">10.0.0"
},
"description": "Simpler interface for setting and retrieving data using the Trello API",
"main": "build/Trello.js",
"types": "build/Trello.d.ts",
"files": [
"build/**/*.ts",
"build/**/*.js",
"build/*.js",
"LICENSE",
"CODE_OF_CONDUCT.md",
"ReadMe.md"
],
"scripts": {
"prebuild": "rimraf build/* ",
"build": "tsc ",
"predoc": "rimraf docs/*",
"doc": "typedoc --out docs ./src",
"security-check": "npm audit",
"lint": "esw src/**/*.ts --color",
"lint:watch": "npm run lint -- --watch",
"pretest": "cp -f ./src/test-data/unit-test-fake-credentials.json ./build/test-data/",
"test": "mocha",
"test:int": "npm run test -- -- -g INTEGRATION 'src/**/*.int.ts' ",
"test:watch": "npm run test -- -- --watch --watch-extensions ts --reporter min",
"pretest:build": "npm run pretest",
"test:build": "mocha --no-config './build/*.test.js' './build/**/*.test.js' ",
"test:cov": "nyc npm test --silent",
"test:unit": "npm test -- --forbid-only ",
"test:all": "nyc run-p 'test -- --forbid-only' 'test:int -- --forbid-only'",
"watch": "run-p lint:watch test:watch",
"pub:ver": "npm version patch ",
"pub": "npm publish ",
"pub:commit": "git commit --all -m 'npm build commit'",
"pub:push": "git push",
"pub:full": "npm-run-all --parallel lint test:all doc --serial pub:commit pub:ver pub "
},
"repository": {
"type": "git",
"url": "[email protected]:Rolias/trello-helper.git"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"trello",
"api",
"helper",
"custom fields",
"easy",
"pluralsight",
"type safe",
"typescript"
],
"author": "Tod Gentille",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Rolias/trello-helper/issues"
},
"homepage": "https://github.com/Rolias/trello-helper#readme",
"mocha": {
"verbose": true,
"reporter": "spec"
},
"dependencies": {
"env-create": "^1.1.1",
"moment": "^2.29.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"winston": "x"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@types/request-promise-native": "^1.0.17",
"@types/sinon": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "x",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-watch": "^7.0.0",
"mocha": "^8.4.0",
"nodemon": "^2.0.7",
"npm-run-all": "x",
"nyc": "x",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typedoc": "^0.20.36",
"typescript": "^4.3.2"
}
}