forked from jamiemccrindle/axax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 896 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
41
42
43
{
"name": "axax",
"version": "0.1.18",
"license": "MIT",
"repository": {
"url": "https://github.com/jamiemccrindle/axax",
"type": "git"
},
"keywords": [
"async",
"async iterators",
"async generators",
"flatMap",
"map",
"merge",
"filter",
"map",
"reduce"
],
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/node": "^10.9.4",
"jest": "^23.5.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"test": "jest",
"clean": "rimraf es5 esnext",
"build": "yarn clean && yarn lint && tsc -p tsconfig.es5.json && tsc -p tsconfig.esnext.json"
},
"main": "es5/index.js",
"types": "es5/index.d.ts",
"files": [
"es5",
"esnext"
]
}