-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.86 KB
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
{
"name": "@run-crank/utilities",
"version": "0.5.1",
"description": "Utility methods and functionality to be shared across all Cogs written in Typescript.",
"homepage": "https://github.com/run-crank/typescript-cog-utilities#readme",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist/src/*",
"package.json",
"README.md",
"LICENSE"
],
"keywords": [],
"license": "MIT",
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "ts"
}
},
"scripts": {
"build": "gulp build",
"dev": "npm-watch build",
"lint-noFix": "gulp lint-noFix",
"lint": "npm run prettier && npm run tslint",
"test": "npm run build && npm run test-core",
"test-core": "jest --config=./ci-jest.config.json --forceExit --detectOpenHandles",
"compile": "tsc",
"prettier": "prettier \"{src/**/*.*,typings/**/*.*,tests/**/*.*}\" --write",
"tslint": "tslint -c tslint.json -p tsconfig.json -t stylish --fix \"{src,tests}/**/*.ts\"",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/run-crank/typescript-cog-utilities.git"
},
"bugs": {
"url": "https://github.com/run-crank/typescript-cog-utilities/issues"
},
"dependencies": {
"csv-string": "^4.0.1",
"moment": "^2.24.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^23.3.1",
"@types/node": "^14.0.13",
"@types/yosay": "^0.0.29",
"del": "^3.0.0",
"fancy-log": "^1.3.2",
"gulp": "^4.0.2",
"gulp-cli": "^2.0.1",
"gulp-prettier-plugin": "^1.3.0",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0-alpha.2",
"jest": "^25.0.0",
"npm-watch": "^0.6.0",
"prettier": "^1.13.7",
"run-sequence": "^2.2.1",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.0.0"
}
}