Change from pnpm to npm, add ./link.sh shortcut for npm style package linking
[clean-css.git] / package.json
1 {
2   "name": "@ndcode/clean-css",
3   "version": "4.2.1",
4   "author": "Jakub Pawlowicz <contact@jakubpawlowicz.com> (http://twitter.com/jakubpawlowicz)",
5   "maintainer": "Nick Downing <nick@ndcode.org>",
6   "description": "A well-tested CSS minifier, modified to add NDCODE hooks.",
7   "license": "MIT",
8   "keywords": [
9     "css",
10     "minifier"
11   ],
12   "homepage": "https://www.ndcode.org",
13   "repository": {
14     "type": "git",
15     "url": "https://git.ndcode.org/public/clean-css.git"
16   },
17   "bugs": {
18     "email": "nick@ndcode.org"
19   },
20   "main": "index.js",
21   "files": [
22     "lib",
23     "History.md",
24     "index.js",
25     "LICENSE"
26   ],
27   "scripts": {
28     "browserify": "browserify --standalone CleanCSS index.js | uglifyjs --compress --mangle -o cleancss-browser.js",
29     "bench": "node ./test/bench.js",
30     "check": "jshint .",
31     "prepublish": "npm run check",
32     "test": "vows"
33   },
34   "dependencies": {
35     "assert": "^1.4.1",
36     "source-map": "~0.6.0"
37   },
38   "devDependencies": {
39     "browserify": "^14.0.0",
40     "http-proxy": "1.x",
41     "jshint": "2.x",
42     "nock": "9.x",
43     "server-destroy": "1.x",
44     "uglify-js": ">=2.6.1",
45     "vows": "0.8.x"
46   },
47   "engines": {
48     "node": ">= 4.0"
49   }
50 }