forked from Sullux/fp-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 977 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
{
"name": "@sullux/fp-light",
"version": "1.2.33",
"engines": {
"node": ">=10.*"
},
"description": "A lightweight library to support functional programming in javascript.",
"keywords": [
"fp",
"functional"
],
"main": "index.js",
"type": "module",
"scripts": {
"build": "(rm -rf dist || 0) && mkdir dist && rollup -c && cp README.md dist/ && node ./scripts/package.js",
"lint": "./node_modules/.bin/eslint *.js ./lib/**/*.js",
"fix": "./node_modules/.bin/eslint *.js ./lib/**/*.js --fix",
"test": "node scripts/test --files \"**/*.test.js\" -i \"**/node_modules/**/*\"",
"deploy": "yarn build && cd dist && npm publish --access public"
},
"author": "Charles Sullivan <[email protected]> (https://github.com/Sullux)",
"license": "MIT",
"repository": "sullux/fp-light",
"homepage": "https://github.com/Sullux/fp-light/blob/master/README.md",
"devDependencies": {
"eslint": "^8.5.0",
"rollup": "^2.63.0"
}
}