-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "fasy",
"version": "9.0.2",
"description": "FP iterator helpers that are async/generator aware",
"main": "./src/index.js",
"scripts": {
"test": "node scripts/node-tests.js",
"test:dist": "TEST_DIST=true npm test",
"test:package": "TEST_PACKAGE=true npm test",
"test:all": "npm test && npm run test:dist && npm run test:package",
"coverage": "nyc -t './coverage/.nyc_output' --reporter=lcov --reporter=html --reporter=text --exclude=**/tests --exclude=**/node-tests.js node scripts/node-tests.js",
"coverage:report": "npm run coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build-all": "node scripts/build-all.js",
"build": "npm run build-all",
"prepare": "npm run build",
"prepublish": "npm run build && npm run test:all",
"publish": "npm run coverage:report"
},
"devDependencies": {
"coveralls": "~3.1.1",
"moduloze": "~0.9.1",
"nyc": "~15.1.0",
"qunit": "~2.19.1"
},
"mz-dependencies": {
"index.js": "FA",
"serial.js": "FASerial",
"concurrent.js": "FAConcurrent",
"transducers.js": "FATransducers",
"internals.js": "FAInternals"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"default": "./src/index.js"
},
"./serial": {
"import": "./dist/esm/serial.mjs",
"default": "./src/serial.js"
},
"./concurrent": {
"import": "./dist/esm/concurrent.mjs",
"default": "./src/concurrent.js"
},
"./transducers": {
"import": "./dist/esm/transducers.mjs",
"default": "./src/transducers.js"
},
"./esm": "./dist/esm/index.mjs",
"./esm/serial": "./dist/esm/serial.mjs",
"./esm/concurrent": "./dist/esm/concurrent.mjs",
"./esm/transducers": "./dist/esm/transducers.mjs"
},
"repository": "getify/fasy",
"keywords": [
"fp",
"functional programming",
"async"
],
"bugs": {
"url": "https://github.com/getify/fasy/issues",
"email": "getify@gmail.com"
},
"homepage": "https://github.com/getify/fasy",
"author": "Kyle Simpson <getify@gmail.com>",
"license": "MIT"
}