-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "nemathode",
"version": "1.0.5",
"description": "Math libs manager with single syntax (nemathode)",
"license": "MIT",
"homepage": "https://nemathode.org",
"repository": {
"type": "git",
"url": "git+https://github.com/kas-elvirov/nemathode.git"
},
"bugs": {
"url": "https://github.com/kas-elvirov/nemathode/issues"
},
"keywords": [
"javascript",
"math",
"expression-evaluator",
"notation",
"refactoring"
],
"publishConfig": {
"registry-github": "https://npm.pkg.github.com/kas-elvirov",
"registry-npm": "https://registry.npmjs.org/"
},
"authors": [
"Kas Elvirov <[email protected]> (https://github.com/kas-elvirov)"
],
"main": "dist/nemathode.js",
"module": "dist/nemathode.mjs",
"typings": "dist/nemathode.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"npmName": "nemathode",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageProvider": "v8"
},
"husky": {
"hooks": {
"pre-commit": "yarn version-patch:up",
"pre-push": "yarn test"
}
},
"scripts": {
"clean": "rimraf lib dist es coverage types",
"lint": "eslint -c .eslintrc.js --ext js,jsx,ts,tsx ./src",
"check-types": "tsc --noEmit",
"test": "jest",
"test:w": "jest --watchAll",
"build-types": "tsc --emitDeclarationOnly --declaration",
"build": "rollup -c --bundleConfigAsCjs",
"precommit": "npm run test && npm run version-patch:up",
"pretest": "npm run build",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run check-types && npm run lint && npm test",
"--- VERSIONING ---": "",
"version-patch:up": "npm version patch --no-git-tag-version --force && git add package.json",
"version-minor:up": "npm version minor --no-git-tag-version --force && git add package.json",
"version-major:up": "npm version major --no-git-tag-version --force && git add package.json"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/jest": "^29.4.0",
"@types/jest-each": "^24.3.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"esbuild": "^0.17.5",
"eslint": "7.26.0",
"expect": "^26.6.2",
"husky": "^8.0.1",
"is-positive-array": "^1.0.12",
"jest": "^26.6.3",
"jest-each": "^26.6.2",
"rimraf": "^3.0.2",
"rollup": "^3.17.2",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-esbuild": "^5.0.0",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}