-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 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
{
"name": "bearly-functional",
"version": "1.0.0",
"description": "a repo of functions, some functional, some bearly 🐻",
"main": "dist/bearly-functional.cjs.js",
"module": "dist/bearly-functional.esm.js",
"browser": "dist/bearly-functional.umd.js",
"scripts": {
"build": "cross-env BABEL_ENV=build rollup -c",
"coverage": "npm run test && tap --coverage-report=lcov",
"test": "tap --reporter=classic",
"test:riteway": "riteway -r esm ./src/**/__tests__/**/*.js",
"test:output-tap": "tap --reporter=tap --no-coverage",
"doc": "rimraf docs/* & npm run doc:html",
"doc:html": "documentation build ./src/index.js -f html -o docs",
"preversion": "npm run test",
"version": "npm run doc && git add -A docs",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run build",
"postpublish": "rimraf dist/"
},
"files": [
"/dist"
],
"peerDependencies": {
"date-fns": "^2.16.1"
},
"dependencies": {
"core-js": "^3.6.5",
"sanctuary": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"cross-env": "^7.0.2",
"date-fns": "^2.16.1",
"documentation": "^13.0.2",
"esm": "^3.2.25",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"riteway": "^6.2.1",
"rollup": "^2.32.1",
"rollup-plugin-terser": "^7.0.2",
"tap": "^14.10.8"
},
"author": "puiutucutu",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/puiutucutu/bearly-functional.git"
}
}