-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "fzo",
"version": "0.1.3",
"description": "fzo is simply freeze object library",
"main": "dist/fzo.cjs.js",
"browser": "dist/fzo.js",
"module": "dist/fzo.es.js",
"scripts": {
"lint": "eslint --fix src/**/*.js",
"build": "npm run clean && rollup -c",
"test": "jest",
"clean": "rimraf dist/*",
"pub": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rewrite0w0/fzo.git"
},
"keywords": [
"immutable",
"pure",
"javascript",
"functional programming",
"purity"
],
"author": "rewrite0w0",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/rewrite0w0/fzo/issues"
},
"homepage": "https://github.com/rewrite0w0/fzo#readme",
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"eslint": "^8.13.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-terser": "^7.0.2"
}
}