-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.13 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
{
"name": "finlambda",
"version": "1.0.0-beta.5",
"description": "Functional programing library for financial calculations",
"keywords": [
"financial",
"utilities",
"tax",
"money",
"utils",
"fp",
"library"
],
"main": "umd/finlambda.umd.js",
"module": "es5m/finlambda.js",
"es2015": "es2015/finlambda.js",
"unpkg": "umd/finlambda.umd.min.js",
"jsdelivr": "umd/finlambda.umd.min.js",
"scripts": {
"build:esm5": "rollup -c config/rollup-es5m.config.js -o dist/es5m/finlambda.js",
"build:es2015": "rollup -c config/rollup-es2015.config.js -o dist/es2015/finlambda.js",
"build:umd": "rollup -c config/rollup-umd.config.js -o dist/umd/finlambda.umd.js",
"build:umd:min": "cross-env NODE_ENV=prod rollup -c config/rollup-umd.config.js -o dist/umd/finlambda.umd.min.js",
"build": "npm run build:esm5 && npm run build:es2015 && npm run build:umd && npm run build:umd:min && npm run copy:assets",
"copy:assets": "cp -r src/ dist/ && cp README.md dist && cp package.json dist",
"test": "jest",
"coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"release": "npm test && npm run build && npm publish dist",
"generate-docs": "jsdoc -c config/jsdoc.config.json src"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eboukamza/finlambda.git"
},
"author": "Elias Boukamza <ezain2t@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eboukamza/finlambda/issues"
},
"homepage": "https://github.com/eboukamza/finlambda#readme",
"peerDependencies": {
"ramda": "0.26.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"babel-core": "^7.0.0-bridge",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.11",
"cross-env": "^5.2.0",
"jest": "^25.2.4",
"jsdoc": "~3.5.5",
"ramda": "0.26.0",
"rollup": "^0.67.3",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-terser": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "node",
"collectCoverage": true
}
}