-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"$schema": "http://json.schemastore.org/package",
"author": "[email protected]",
"browser": "./dist/neuronal-spiders.js",
"description": "Displays a connections beetween multiple points, very cute visual effect",
"devDependencies": {
"@types/gsap": "^1.19.2",
"gsap": "^1.19.1",
"http-server": "^0.11.1",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"webpack": "^4.19.1",
"webpack-cli": "^3.1.1"
},
"homepage": "https://github.com/deinok/neuronal-spiders.js",
"keywords": [
"canvas",
"javascript",
"neuronal",
"spider",
"typescript"
],
"license": "MIT",
"module": "./src/index.js",
"name": "neuronal-spiders.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/deinok/neuronal-spiders.js"
},
"scripts": {
"build": "npm run tsc && npm run webpack:dev",
"start": "http-server -a localhost -p 8000 -c-1 .",
"tsc": "node_modules/.bin/tsc",
"tslint": "tslint --fix --project ./tsconfig.json",
"webpack:dev": "webpack --mode development",
"webpack:prod": "webpack --mode production"
},
"version": "0.5.0"
}