-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "decentralized-particles",
"version": "1.3.1",
"description": "An unbelievably small and lightweight particles animation engine",
"main": "dist/build.cjs.js",
"module": "dist/build.esm.js",
"typings": "typings/index.d.ts",
"scripts": {
"build": "rollup -c --environment=NODE_ENV:production && tsc",
"test": "rollup -c",
"test:unit": "rollup -c --environment=TEST_TYPE:unit",
"dev": "rollup -c --environment=TEST_TYPE:browser,NODE_ENV:production",
"lint": "prettier --write \"./**\"",
"lint:test": "prettier --check \"./**\"",
"preversion": "npm run test && npm run lint:test && npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"animation",
"particles",
"canvas",
"dom",
"node"
],
"author": {
"name": "Vehmloewff",
"url": "https://github.com/Vehmloewff"
},
"files": [
"dist",
"typings"
],
"license": "MIT",
"devDependencies": {
"acorn": "^7.1.0",
"deepmerge": "^4.2.2",
"prettier": "^1.19.1",
"rollup": "^1.29.1",
"rollup-plugin-command": "^1.1.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-glob-files": "^2.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"serve": "^11.3.0",
"tslib": "^1.10.0",
"typescript": "^3.7.5",
"zip-tap": "^1.0.5"
},
"homepage": "https://github.com/Vehmloewff/decentralized-particles",
"repository": {
"type": "git",
"url": "https://github.com/Vehmloewff/decentralized-particles"
},
"dependencies": {}
}