-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "@ysorg/fu",
"version": "0.5.0",
"description": "Functional Utils",
"main": "dist/fu.js",
"umd": "dist/fu.js",
"es": "dist/fu.es.js",
"cjs": "dist/fu.cjs.js",
"typings": "types/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"docs": "documentation readme src/main.ts --section API -q --parse-extension ts",
"dev": "set NODE_ENV=development && rollup -c rollup.config.js -w",
"featureDev": "set NODE_ENV=development && node build",
"build": "rimraf dist && set NODE_ENV=production && rollup -c rollup.config.js",
"lint": "npx prettier --write .",
"test": "jest",
"release": "npm run -s build -s && npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jesonhu/fu-js.git"
},
"keywords": [],
"authors": [
"Jesonhu"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Jesonhu/fu-js/issues"
},
"homepage": "https://github.com/Jesonhu/fu-js#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.3.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"babel-jest": "^26.6.3",
"chai": "^4.2.0",
"documentation": "^13.0.0",
"eslint": "^7.1.0",
"eslint-config-developit": "^1.2.0",
"esm": "^3.2.25",
"jest": "^26.6.3",
"microbundle": "^0.12.3",
"mocha": "^8.0.1",
"npm-run-all": "^4.1.5",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^8.10.2",
"tslib": "^2.3.0",
"typescript": "^3.9.9"
},
"dependencies": {
"lodash": "^4.17.21"
}
}