forked from leopard-js/leopard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "leopard",
"version": "1.3.3",
"description": "Make Scratch-like projects with JavaScript.",
"private": false,
"browser": true,
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"scripts": {
"dev": "rollup -c --watch",
"build": "rollup -c",
"prepare": "npm run build",
"lint": "eslint \"./src/**.js\""
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PullJosh/leopard.git"
},
"author": "Josh Pullen <[email protected]> (https://joshuapullen.com/)",
"contributors": [
"adroitwhiz <[email protected]> (https://github.com/adroitwhiz)",
"Florrie Haero Miller <[email protected]> (https://github.com/towerofnix)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PullJosh/leopard/issues"
},
"homepage": "https://leopardjs.now.sh/",
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rollup": "^2.77.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}