-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 809 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 809 Bytes
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
{
"name": "seq.ts",
"version": "1.0.0",
"description": "A typescript wrapper for Iterable<T> providing functional programming functionality similar to ReadonlyArray<T>",
"main": "./lib/seq.js",
"types": "./lib/seq.d.ts",
"scripts": {
"test": "mocha --opts mocha.opts",
"build": "tsc -p src/tsconfig.json"
},
"keywords": [
"typescript",
"functional programming"
],
"author": "Ya'ar Hever",
"license": "Apache 2.0",
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/node": "^8.5.2",
"@types/sinon": "^4.1.2",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"ts-node": "^4.0.2",
"tslib": "^1.8.1",
"typescript": "^2.6.2"
}
}