UNPKG

1.94 kBJSONView Raw
1{
2 "name": "aurelia-bundler",
3 "version": "0.7.0",
4 "description": "A library for bundling JavaScript, HTML and CSS for use with SystemJS.",
5 "keywords": [
6 "aurelia",
7 "systemjs",
8 "bundling",
9 "HTML",
10 "JavaScript",
11 "CSS"
12 ],
13 "homepage": "http://aurelia.io",
14 "bugs": {
15 "url": "https://github.com/aurelia/bundler/issues"
16 },
17 "license": "MIT",
18 "author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
19 "main": "dist/index.js",
20 "repository": {
21 "type": "git",
22 "url": "http://github.com/aurelia/bundler"
23 },
24 "scripts": {
25 "lint": "tslint --project tsconfig.json",
26 "test": "mocha --reporter spec --compilers ts:ts-node/register test/**/*.spec.ts",
27 "prebuild:compile": "rimraf 'dist/**'",
28 "build:compile": "tsc --project tsconfig.dist.json --outDir dist --module commonjs",
29 "build": "npm run build:compile"
30 },
31 "dependencies": {
32 "bluebird": "^2.9.25",
33 "cheerio": "^0.22.0",
34 "clean-css": "^3.4.9",
35 "glob": "^5.0.9",
36 "globby": "^2.0.0",
37 "html-minifier": "^3.5.5",
38 "lodash": "^4.17.4",
39 "mkdirp": "^0.5.1",
40 "rev-hash": "^1.0.0",
41 "rev-path": "^1.0.0",
42 "systemjs-builder": "^0.16.9"
43 },
44 "devDependencies": {
45 "@types/bluebird": "^3.0.35",
46 "@types/chai": "^3.4.34",
47 "@types/cheerio": "^0.17.31",
48 "@types/clean-css": "^3.4.30",
49 "@types/expect": "^1.13.30",
50 "@types/glob": "^5.0.30",
51 "@types/html-minifier": "^1.1.30",
52 "@types/lodash": "^4.14.54",
53 "@types/mkdirp": "^0.3.29",
54 "@types/mocha": "^2.2.32",
55 "@types/node": "^6.0.51",
56 "@types/sinon": "^1.16.31",
57 "@types/sinon-chai": "^2.7.27",
58 "chai": "^3.5.0",
59 "cross-env": "^3.1.3",
60 "eslint": "^3.8.1",
61 "expect": "^1.19.0",
62 "mocha": "^2.4.5",
63 "rimraf": "^2.5.4",
64 "sinon": "^1.17.6",
65 "sinon-chai": "^2.8.0",
66 "ts-node": "3.3.0",
67 "tslint": "^3.15.1",
68 "typescript": "^2.1.4"
69 }
70}