-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "@byte-this/funscript",
"version": "1.0.39",
"description": "A typescript API which facilitates functional programming.",
"main": "public-api.js",
"types": "public-api.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage && jest-coverage-badges",
"format": "npx prettier --write .",
"build": "node build-cli.js build",
"publish:npm": "node build-cli.js publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteThisStore/funscript.git"
},
"keywords": [
"functional",
"javascript",
"typescript"
],
"author": "Byte This!",
"license": "ISC",
"bugs": {
"url": "https://github.com/ByteThisStore/funscript/issues"
},
"homepage": "https://github.com/ByteThisStore/funscript#readme",
"devDependencies": {
"@types/eventemitter3": "^2.0.2",
"@types/jest": "^26.0.23",
"cpy-cli": "^3.1.1",
"jest": "^26.6.3",
"jest-coverage-badges": "^1.1.2",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}