-
-
Notifications
You must be signed in to change notification settings - Fork 926
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "mithril",
"version": "2.2.9",
"description": "A framework for building brilliant applications",
"author": "Leo Horie",
"license": "MIT",
"unpkg": "mithril.min.js",
"jsdelivr": "mithril.min.js",
"repository": "github:MithrilJS/mithril.js",
"scripts": {
"watch": "run-p watch:**",
"watch:js": "node scripts/bundler browser.js -output mithril.js -watch",
"build": "run-p build:browser build:min build:stream-min",
"build:browser": "node scripts/bundler browser.js -output mithril.js",
"build:min": "node scripts/bundler browser.js -output mithril.min.js -minify -save",
"build:stream-min": "node scripts/minify-stream",
"cleanup:lint": "rimraf .eslintcache",
"lint": "run-s -cn lint:**",
"lint:js": "eslint . --cache",
"perf": "node performance/test-perf.js",
"pretest": "npm run lint",
"test": "run-s test:js",
"test:js": "ospec"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chokidar": "^4.0.1",
"eslint": "^8.9.0",
"glob": "^11.0.0",
"npm-run-all": "^4.1.5",
"ospec": "4.2.1",
"rimraf": "^6.0.1",
"terser": "^4.3.4"
}
}