forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "@thi.ng/iterators",
"version": "4.1.5",
"description": "clojure.core inspired, composable ES6 iterators & generators",
"main": "./index.js",
"typings": "./index.d.ts",
"repository": "https://github.com/thi-ng/umbrella",
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && tsc --declaration",
"clean": "rm -rf *.js *.d.ts .nyc_output build coverage doc",
"cover": "yarn test && nyc report --reporter=lcov",
"doc": "node_modules/.bin/typedoc --mode modules --out doc src",
"pub": "yarn build && yarn publish --access public",
"test": "rm -rf build && tsc -p test && nyc mocha build/test/*.js"
},
"devDependencies": {
"@types/mocha": "^5.0.0",
"@types/node": "^9.6.1",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"typedoc": "^0.11.1",
"typescript": "^2.8.1"
},
"dependencies": {
"@thi.ng/api": "^2.2.0",
"@thi.ng/dcons": "^0.2.0"
},
"keywords": [
"clojure",
"composition",
"ES6",
"functional",
"generators",
"iterators",
"lazy",
"sequences",
"typescript"
],
"publishConfig": {
"access": "public"
}
}