-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.62 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@mitevpi/algos",
"version": "0.2.0",
"description": "Low-level algorithms for data processing and manipulation.",
"license": "MIT",
"repository": "mitevpi/algos",
"main": "dist/index.js",
"browser": "dist/algos.umd.min.js",
"cdn": "dist/algos.umd.min.js",
"author": {
"name": "Petr Mitev",
"email": "[email protected]",
"url": "https://mitevpi.com/"
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint . --fix",
"docs": "documentation build src/index.js -f md -o docs/README.md && documentation build src/** -f html -o docs",
"postdocs": "",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run build:common-js && npm run build:umd && npm run build:umd:min",
"build:common-js": "babel src -d dist",
"build:umd": "node_modules/.bin/rollup src/index.js --file dist/algos.umd.js --format umd --name algos",
"build:umd:watch": "npm run build:umd -- --watch",
"build:umd:min": "node_modules/.bin/rollup src/index.js --file dist/algos.umd.min.js --config --format umd --compact --name algos",
"prerelease": "npm run lint --fix & npm test && npm run build && npm run docs",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"verbose": true
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"node",
"module",
"package",
"algorithm",
"data",
"visualization"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.10.5",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.10.4",
"babel-eslint": "10.1.0",
"babel-jest": "26.1.0",
"documentation": "13.0.2",
"eslint": "7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.19.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.1.0",
"lint-staged": "10.2.11",
"open-cli": "6.0.1",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"rollup": "2.23.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-babel-minify": "10.0.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-watch": "4.3.1",
"standard-version": "8.0.2"
}
}