-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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": "party-js",
"version": "2.2.0",
"description": "A JavaScript library to brighten up your user's site experience with visual effects!",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"scripts": {
"clean": "rimraf bundle lib",
"build": "yarn clean && tsc && webpack",
"test": "mocha -r ts-node/register 'tests/**/*.test.ts'",
"lint": "eslint . --ext .js,.ts",
"dev": "webpack serve",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yiliansource/party-js.git"
},
"bugs": {
"url": "https://github.com/yiliansource/party-js/issues"
},
"homepage": "https://party.js.org",
"keywords": [
"party",
"confetti",
"particles"
],
"author": "Ian Hornik",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/chai": "^4.2.16",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^9.1.2",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.24.2",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.3.0"
}
}