forked from WestinSchepper/rankr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "rankr",
"version": "0.3.0",
"description": "Rankr helps you score data sets based on multiple criterias.",
"private": false,
"homepage": "https://westinschepper.com/rankr",
"repository": {
"type": "git",
"url": "https://github.com/WestinSchepper/rankr.git"
},
"bugs": {
"url": "https://github.com/WestinSchepper/rankr/issues"
},
"main": "dist/index.js",
"typings": "dist/types/index.d.ts",
"scripts": {
"start": "nodemon --watch src/ --exec yarn build:dev",
"test": "jest",
"build:dev": "rollup -c rollup.config.dev.js && tsc --emitDeclarationOnly",
"build": "yarn test --coverage && rollup -c rollup.config.build.js && tsc --emitDeclarationOnly",
"bundle": "rm -rf dist && yarn build"
},
"files": [
"dist"
],
"keywords": [
"ranking",
"scoring",
"criteria",
"algorithm"
],
"author": "Westin Schepper",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.3.0",
"@types/jest": "^27.0.2",
"jest": "^27.2.4",
"nodemon": "^2.0.13",
"rollup": "^2.58.0",
"rollup-plugin-summary": "^1.3.0",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-visualizer": "^5.5.2",
"ts-jest": "^27.0.7",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"lodash.get": "^4.4.2"
}
}