summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/package.json
blob: f3ee8f88db6086284fc30675f8b984b03df7062c (plain)
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
{
  "scripts": {
    "pretest": "npm install",
    "test": "grunt test",
    "lint": "grunt lint",
    "prebuild": "npm install",
    "build:sticky": "mkdir -p resources/js/sticky-kit && browserify node_modules/sticky-kit/dist/sticky-kit.js -o resources/js/sticky-kit/jquery.sticky-kit.js",
    "build:docs": "grep -rl 'docs/' -e '<!-- START doctoc'|xargs doctoc --title '**Contents**' --maxlevel 3 --notitle",
    "build": "npm run build:sticky && npm run build:docs"
  },
  "devDependencies": {
    "browserify": "^13.1.0",
    "browserify-shim": "^3.8.12",
    "doctoc": "^1.2.0",
    "grunt": "^0.4.0",
    "grunt-banana-checker": "^0.4.0",
    "grunt-cli": "^0.1.13",
    "grunt-contrib-jshint": "^1.0.0",
    "grunt-jsonlint": "^1.0.7"
  },
  "dependencies": {
    "sticky-kit": "^1.1.3"
  },
  "browserify-shim": {
    "../../resources/lib/jquery/jquery.js": {
      "exports": [
        "jquery",
        "$"
      ]
    }
  },
  "browserify": {
    "transform": [
      "browserify-shim"
    ]
  }
}