-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "parallel1d",
"version": "2.0.0",
"description": "Parallel computations on 1D arrays for Javascript",
"main": "index.js",
"files": [
"promisified.js"
],
"scripts": {
"start": "webpack serve --mode development --open",
"start-production": "webpack serve --mode production",
"build": "webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ext .js .",
"lint:fix": "eslint --fix --ext .js .",
"size": "size-limit",
"preversion": "npm run test && npm run lint",
"deploy": "npm run build && gh-pages -d build",
"prepublishOnly": "git push --all origin && git push origin --tags && npm run deploy"
},
"size-limit": [
{
"path": "./index.js"
},
{
"path": "./promisified.js"
}
],
"repository": "github:bouvens/parallel1d",
"keywords": [
"javascript",
"npm"
],
"author": "Alexander Demin <bouvens@gmail.com> (https://bouvens.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bouvens/parallel1d/issues"
},
"homepage": "https://bouvens.github.io/parallel1d",
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.2.0",
"eslint": "^7.20.0",
"eslint-config-air-base": "^0.3.1",
"eslint-plugin-jest": "^24.4.0",
"gh-pages": "^3.1.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.1.1",
"mini-css-extract-plugin": "^2.2.2",
"size-limit": "^5.0.3",
"webpack": "^5.90.3",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.2.0",
"worker-loader": "^3.0.8"
},
"engines": {
"node": ">=20.11.1",
"npm": ">=10.2.4"
}
}