-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.35 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "valance",
"version": "0.0.1",
"description": "A cross-framework platform for developing component-based web applications.",
"repository": {
"type": "git",
"url": "https://github.com/ispyhumanfly/valance.git"
},
"preferGlobal": true,
"main": "./index.js",
"os": [
"darwin",
"linux"
],
"cpu": [
"x64"
],
"bin": {
"valance": "./dist/valance.cli.js"
},
"scripts": {
"prepublish": "typings install && npm run build_index && npm run build_cli && npm run build_spec && npm run build_lib && npm run test",
"build_index": "node_modules/.bin/tsc ./src/index.ts &>/dev/null ; node_modules/.bin/uglifyjs ./src/index.js -b -o ./src/index.js ; node_modules/.bin/uglifyjs ./src/index.js -o ./index.js",
"build_cli": "node_modules/.bin/tsc ./src/valance.cli.ts &>/dev/null ; node_modules/.bin/uglifyjs ./src/valance.cli.js -b -o ./src/valance.cli.js ; node_modules/.bin/uglifyjs ./src/valance.cli.js -o ./dist/valance.cli.js",
"build_lib": "node_modules/.bin/tsc ./src/valance.lib.ts &>/dev/null ; node_modules/.bin/uglifyjs ./src/valance.lib.js -b -o ./src/valance.lib.js ; node_modules/.bin/uglifyjs ./src/valance.lib.js -o ./dist/valance.lib.js",
"build_spec": "node_modules/.bin/tsc ./src/valance.spec.ts &>/dev/null ; node_modules/.bin/uglifyjs ./src/valance.spec.js -b -o ./src/valance.spec.js ; node_modules/.bin/uglifyjs ./src/valance.spec.js -o ./spec/valance.spec.js",
"test": "node_modules/.bin/jasmine -w",
"release:major": "node_modules/.bin/shelljs-release major",
"release:minor": "node_modules/.bin/shelljs-release minor",
"release:patch": "node_modules/.bin/shelljs-release patch",
"start": "npm run prepublish ; node dist/valance.cli.js"
},
"author": "Dan Stephenson",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"browserify": "^1.0.0",
"bunyan": "^1.8.4",
"compression": "^1.6.2",
"connect-redis": "^3.1.0",
"core-js": "^2.4.1",
"errorhandler": "^1.5.0",
"events": "^1.1.1",
"express": "^4.14.0",
"express-bunyan-logger": "^1.3.1",
"express-minify": "^0.2.0",
"express-redis": "^1.2.3",
"express-redis-cache": "^0.5.0",
"express-redis-session": "^1.0.0",
"express-session": "^1.14.1",
"express-view-cache": "^0.1.6",
"highlight.js": "^9.7.0",
"highlightjs": "^8.7.0",
"inversify": "^2.0.1",
"jasmine": "^2.5.2",
"jquery": "^3.1.1",
"jquery-ui-dist": "^1.12.1",
"json2html": "0.0.8",
"jsonfile": "^2.4.0",
"jsonrepair": "^0.1.0",
"jstransformer": "^1.0.0",
"jstransformer-browserify": "^0.4.0",
"jstransformer-clean-css": "^1.1.1",
"jstransformer-highlight": "^1.0.1",
"jstransformer-jsx": "0.0.2",
"jstransformer-less": "^2.1.0",
"jstransformer-markdown-it": "^2.0.0",
"jstransformer-posthtml": "^0.1.0",
"jstransformer-stylus": "^1.1.0",
"jstransformer-typescript": "^1.0.0",
"jstransformer-uglify-js": "^1.1.1",
"less": "^2.7.1",
"line-reader": "^0.4.0",
"markdown-it": "^8.1.0",
"markdown-it-table-of-contents": "^0.2.3",
"markdown-it-video": "^0.4.0",
"mime": "^1.3.4",
"node-redis": "^0.1.7",
"path-exists": "^3.0.0",
"posthtml": "^0.9.1",
"posthtml-pug": "^1.0.1",
"posthtml-web-component": "^0.1.0",
"prettyjson": "^1.2.1",
"pug": "^2.0.0-beta6",
"pug-beautifier": "0.0.1",
"pug-filters": "^1.2.4",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"recursive-search": "^1.0.1",
"redis": "^2.6.2",
"reflect-metadata": "^0.1.8",
"require": "^2.4.20",
"requirejs": "^2.3.3",
"restify": "^4.2.0",
"rxjs": "^5.2.0",
"semver": "^5.3.0",
"shx": "^0.2.0",
"skatejs": "*",
"skatejs-react-integration": "*",
"skatejs-template-html": "*",
"skatejs-web-components": "*",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"symbol": "^0.3.0",
"ts-dependency-injection": "^1.2.2",
"ts-node": "^3.0.2",
"tslint": "^3.15.1",
"tslint-config-standard": "^4.0.0",
"typedoc": "^0.5.9",
"typescript": "^2.0.6",
"typescript-compiler": "^1.4.1-2",
"typings": "^1.5.0",
"uglify": "^0.1.5",
"uglify-js": "^2.7.4",
"watch": "^1.0.1",
"webcomponents.js": "^0.7.24",
"x-tag": "^1.5.11",
"yargs": "^6.6.0"
},
"devDependencies": {
"shelljs-release": "^0.2.0"
}
}