-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 882 Bytes
/
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
{
"name": "cury",
"version": "0.0.2",
"description": "Curry a function with typescript typing",
"main": "index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test-typing": "cp fail.badts fail.ts && (tsc || true) | grep 'parameter of type'",
"posttest-typing": "rm fail.ts fail.d.ts",
"preunit-tests": "npm run build",
"unit-tests": "mocha test",
"test": "npm run test-typing && npm run unit-tests"
},
"keywords": [],
"author": "Moshe Kolodny",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^5.2.5",
"mocha": "^5.2.0",
"typescript": "^3.2.2"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/kolodny/cury.git"
},
"bugs": {
"url": "https://github.com/kolodny/cury/issues"
},
"homepage": "https://github.com/kolodny/cury#readme"
}