-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "leajs-spa-router",
"description": "npm version minor",
"version": "0.1.0",
"homepage": "https://github.com/lea-js/",
"author": {
"name": "Paul Pflugradt",
"email": "paul.pflugradt@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/lea-js/leajs-spa-router"
},
"engines": {
"node": "*"
},
"main": "lib/plugin.js",
"web": "lib/client.js",
"files": [
"lib/*.js"
],
"devDependencies": {
"uglify-js": "^3.3.27",
"coffee-cli": "^0.2.1",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.1",
"fs-extra": "^6.0.1",
"get-critical-css": "^0.2.0",
"jstransformer-pug": "^0.3.0",
"leajs-server": "^0.1.1",
"script-runner": "^0.1.7",
"snapy": "^0.1.3"
},
"keywords": [],
"readmeFilename": "README.md",
"scripts": {
"build": "run-npm build:*",
"build:coffee": "coffee-cli --next --bare --no-header --compile --output lib/ src/*.coffee",
"build:coffeeClient": "coffee-cli --no-header --compile --output lib/ src/client.coffee",
"build:minify": "uglifyjs lib/client.js -c -m --output lib/client.min.js",
"test": "snapy",
"doc": "toDoc",
"docRoutes": "toDoc ./src/routesSchema.coffee",
"watch": "snapy --watch",
"dev": "leajs",
"preversion": "npm run test",
"version": "npm run build && git add .",
"postversion": "git push && git push --tags && npm publish"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"hook-up": "^0.2.2",
"jstransformer": "^1.0.0",
"read-conf": "^0.4.4",
"yaku": "^0.18.6"
}
}