-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 924 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
33
34
35
36
37
38
39
40
{
"name": "future-fun",
"version": "5.1.0",
"description": "a way to abstract calls and chain them for easier unit testing and deferred execution",
"main": "index.js",
"scripts": {
"test": "npm run build && mocha",
"build": "tsc",
"build:w": "tsc -w",
"prepare": "npm run test",
"lint": "tslint -p ."
},
"repository": {
"type": "git",
"url": "https://gitlab.com/hesxenon/future-fun.git"
},
"keywords": [
"thunk",
"call",
"callify",
"unit testing",
"future computation",
"tdd",
"test driven development",
"bdd",
"behaviour driven development"
],
"author": "dpot",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"mocha": "^5.1.1",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.8.3",
"@types/node": "^10.0.4"
}
}