-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
{
"name": "boids",
"version": "1.0.0",
"description": "A TypeScript implementation of boids using TypeScriptRenderEngine",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"build": "tsc && parcel build src/index.html --out-dir ./dist/ --public-url /boids",
"format": "prettier --write \"src/**/*.ts\"",
"run": "parcel src/index.html --open",
"publish": "npm run build && gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZackTherrien/boids.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"boids",
"typescript",
"javascript",
"birds",
"flock",
"algorithm"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Zack Therrien",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZackTherrien/boids/issues"
},
"homepage": "https://github.com/ZackTherrien/boids#readme",
"dependencies": {
"@zacktherrien/typescript-render-engine": "file:libs/typescript-render-engine-2.0.0-npm.tgz",
"fast-simplex-noise": "^3.2.1",
"gh-pages": "^2.2.0",
"typescript": "^3.9.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": ""
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}