-
Notifications
You must be signed in to change notification settings - Fork 22
/
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.2.2",
"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": "^24.0.18",
"@types/node": "^12.7.8",
"jest": "^24.9.0",
"prettier": "^1.14.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.11.0",
"typescript": "^3.1.1"
},
"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"
]
}