generated from renoki-co/node.js-package-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.53 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
{
"name": "@renoki-games/node-simplex",
"version": "0.0.0-dev",
"description": "Maintained fork of fast-simplex-noise that works in TS environments.",
"keywords": [
"node",
"package"
],
"repository": {
"type": "git",
"url": "https://github.com/renoki-games/node-simplex.git"
},
"author": "Alex Renoki",
"license": "Apache-2.0",
"homepage": "https://github.com/renoki-games/node-simplex.git",
"main": "dist/index.js",
"module": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "eslint --ext .js,.ts ./src ./tests",
"prepublish": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"dependencies": {},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@types/jest": "^27.0.1",
"@types/node": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.5.0",
"jest": "^26.6.3",
"standard-version": "^9.3.1",
"ts-jest": "^26.4.4",
"tslib": "^2.3.1",
"typescript": "^4.1.3"
},
"bin": {}
}