1 | {
|
2 | "name": "litejs",
|
3 | "version": "19.3.1",
|
4 | "license": "MIT",
|
5 | "author": "Lauri Rooden <lauri@rooden.ee>",
|
6 | "description": "Single-page application framework",
|
7 | "keywords": [
|
8 | "litejs",
|
9 | "api",
|
10 | "test",
|
11 | "framework",
|
12 | "frontend",
|
13 | "browser"
|
14 | ],
|
15 | "main": "lib/index.js",
|
16 | "readmeFilename": "README.md",
|
17 | "bin": {
|
18 | "litejs-doc": "./lib/cli/doc",
|
19 | "litejs-stat": "./lib/cli/stat",
|
20 | "litejs": "./lib/cli/index.js"
|
21 | },
|
22 | "files": [
|
23 | "app",
|
24 | "css",
|
25 | "date",
|
26 | "lib",
|
27 | "model",
|
28 | "test/[!_]*.js",
|
29 | "ui"
|
30 | ],
|
31 | "scripts": {
|
32 | "build": "litejs build",
|
33 | "travis-test": "nyc -r lcovonly -r text npm test",
|
34 | "test": "node --allow-natives-syntax test/_all.js",
|
35 | "test-trace": "node --allow-natives-syntax --trace_opt --trace_deopt test/_all.js"
|
36 | },
|
37 | "repository": "git://github.com/litejs/litejs.git",
|
38 | "bugs": {
|
39 | "url": "https://github.com/litejs/litejs/issues"
|
40 | },
|
41 | "litejs": {
|
42 | "build": [
|
43 | "-r README.md",
|
44 | "-i ui/dev.html -o ui/index.html"
|
45 | ]
|
46 | },
|
47 | "devDependencies": {
|
48 | "dom-lite": "0.5.1"
|
49 | },
|
50 | "jshintConfig": {
|
51 | "asi": true,
|
52 | "laxcomma": true,
|
53 | "maxdepth": 6,
|
54 | "quotmark": "double"
|
55 | }
|
56 | }
|