-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.24 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "stutter",
"version": "0.2.0",
"description": "Functional programming framework for JavaScript",
"author": "Brian Neisler <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://stutter.io",
"repository": {
"type": "git",
"url": "https://github.com/brianneisler/stutter.git"
},
"bugs": {
"url": "https://github.com/brianneisler/stutter/issues"
},
"bin": {
"stutter": "./bin/stutter"
},
"main": "./index.module.js",
"exports": {
"./buffer": "./buffer/index.js",
"./lang": "./lang/index.js",
"./package.json": "./package.json"
},
"engines": {
"node": ">=10.0"
},
"scripts": {
"build": "bash ./scripts/build.sh",
"clean": "bash ./scripts/clean.sh",
"cleanse": "bash ./scripts/cleanse.sh",
"docs:generate": "bash ./scripts/docs-generate.sh",
"lint": "bash ./scripts/lint.sh",
"lint:staged": "bash ./scripts/lint-staged.sh",
"security:audit": "bash ./scripts/security-audit.sh",
"setup": "bash ./scripts/setup.sh",
"test": "bash ./scripts/test.sh",
"test:ci": "bash ./scripts/test-ci.sh",
"watch": "bash ./scripts/watch.sh"
},
"dependencies": {
"buffer": "^5.6.0",
"core-js": "^3.6.5",
"graphlib": "^2.1.8",
"immutable": "^4.0.0-rc.12",
"is-url": "^1.2.4",
"mime-types": "^2.1.27",
"source-map-support": "^0.5.19",
"string-to-stream": "^3.0.1",
"uuid": "^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"codecov": "^3.7.2",
"dox": "^0.9.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"markdown-magic": "^1.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.5",
"ramda": "^0.27.0"
},
"publishConfig": {
"access": "public"
},
"pre-commit": [
"lint:staged"
],
"keywords": [
"functional",
"immutable"
]
}