UNPKG

1.33 kBJSONView Raw
1{
2 "name": "@litejs/cli",
3 "version": "23.4.3",
4 "description": "Command line tools for LiteJS full-stack framework",
5 "license": "MIT",
6 "author": "Lauri Rooden <lauri@rooden.ee>",
7 "keywords": [
8 "litejs",
9 "framework",
10 "test",
11 "cli",
12 "bench"
13 ],
14 "homepage": "https://litejs.com",
15 "repository": "github:litejs/cli",
16 "bugs": "https://github.com/litejs/cli/issues",
17 "main": "index.js",
18 "files": [
19 ".gitignore",
20 "*.js",
21 "cli"
22 ],
23 "scripts": {
24 "test": "TZ='Europe/Tallinn' node --allow-natives-syntax --expose-gc ./index.js test test/index.js --coverage --sources='*.js,cli/*.js' --brief --no-status && jshint *.js cli/*.js"
25 },
26 "dependencies": {
27 "@litejs/dom": "23.3.0"
28 },
29 "bin": {
30 "lj-doc": "./cli/doc",
31 "lj-stat": "./cli/stat",
32 "lj": "./index.js"
33 },
34 "devDependencies": {
35 "jshint": "2.13.6",
36 "uglify-js": "3.17.4"
37 },
38 "workspaces": [
39 "test/dummy"
40 ],
41 "litejs": {
42 "build": false,
43 "install": false,
44 "lint": false,
45 "test": "node -r ./test.js --allow-natives-syntax --expose-gc test/index.js"
46 },
47 "jshintConfig": {
48 "esversion": 5,
49 "asi": true,
50 "evil": true,
51 "laxcomma": true,
52 "maxdepth": 6,
53 "node": true,
54 "nonbsp": true,
55 "undef": true,
56 "unused": true,
57 "quotmark": "double"
58 }
59}