-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "ts-starterkit",
"version": "1.2.0",
"description": "Many functions as pipeline by Javascript",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"private": false,
"scripts": {
"build": "tsc -p ./",
"dev": "tsc -p ./ -w",
"test": "npm run build:test && npm run run:test",
"build:test": "tsc -p ./tests",
"run:test": "mocha ./.test-dist/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliver021/ts-starterkit.git"
},
"keywords": [
"javascript",
"typescript",
"functional",
"pipe",
"function",
"helper"
],
"author": "Oliver Valiente",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliver021/ts-starterkit/issues"
},
"homepage": "https://github.com/oliver021/ts-starterkit#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.0",
"mocha": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}