-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "basic-trend",
"version": "1.0.9",
"description": "Basic algorithm to detect increasing, decreasing or stable trend in a Numbers sequence",
"source": "src/index.js",
"main": "dist/index.js",
"engines": {
"node": ">=12 <=20"
},
"scripts": {
"lint": "eslint src",
"lint-fix": "eslint --fix src --ext .js",
"build": "babel src --out-dir dist --ignore '**/*.test.js'",
"dev": "babel src --out-dir dist --watch --ignore '**/*.test.js'",
"test": "jest --coverage",
"release": "standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/foxted/basic-trend.git"
},
"keywords": [
"trend",
"statistics",
"math",
"sequence",
"arrays"
],
"author": "“Valentin <valentin@whatdafox.com> (https://twitter.com/valentinprngd)",
"license": "MIT",
"bugs": {
"url": "https://github.com/foxted/basic-trend/issues"
},
"homepage": "https://github.com/foxted/basic-trend#readme",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.5.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"standard-version": "^9.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}