-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
42
43
44
45
46
{
"name": "chainablets",
"version": "0.4.2",
"description": "Make something chainable",
"author": "David Luna",
"license": "MIT",
"homepage": "https://github.com/david-luna/chainable",
"bugs": {
"url": "https://github.com/david-luna/chainable/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/david-luna/chainable.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"method chaining",
"utils"
],
"scripts": {
"build": "npm run types:set && tsc -p tsconfig.prod.json && npm run types:reset && npm run types:copy",
"test": "jest",
"types:set": "cd src && mv types.ts types.d.ts",
"types:reset": "cd src && mv types.d.ts types.ts",
"types:copy": "cp ./src/types.ts ./lib/types.d.ts",
"clean": "rm -rf coverage && rm -rf lib",
"lcov": "cat coverage/lcov.info | coveralls"
},
"main": "./lib/chainable.js",
"types": "./lib/chainable.d.ts",
"files": [
"lib"
],
"devDependencies": {
"@types/jest": "^24.0.23",
"coveralls": "^3.0.11",
"jest": "^29.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^8.0.11",
"jasmine-core": "^3.1.0",
"typescript": "^4.1.3"
},
"dependencies": {}
}