This repository has been archived by the owner on Mar 18, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "aurelia-bundler",
"version": "0.7.0",
"description": "A library for bundling JavaScript, HTML and CSS for use with SystemJS.",
"keywords": [
"aurelia",
"systemjs",
"bundling",
"HTML",
"JavaScript",
"CSS"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/bundler/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "http://github.com/aurelia/bundler"
},
"scripts": {
"lint": "tslint --project tsconfig.json",
"test": "mocha --reporter spec --compilers ts:ts-node/register test/**/*.spec.ts",
"prebuild:compile": "rimraf 'dist/**'",
"build:compile": "tsc --project tsconfig.dist.json --outDir dist --module commonjs",
"build": "npm run build:compile"
},
"dependencies": {
"bluebird": "^2.9.25",
"cheerio": "^0.22.0",
"clean-css": "^3.4.9",
"glob": "^5.0.9",
"globby": "^2.0.0",
"html-minifier": "^3.5.5",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"rev-hash": "^1.0.0",
"rev-path": "^1.0.0",
"systemjs-builder": "^0.16.9"
},
"devDependencies": {
"@types/bluebird": "^3.0.35",
"@types/chai": "^3.4.34",
"@types/cheerio": "^0.17.31",
"@types/clean-css": "^3.4.30",
"@types/expect": "^1.13.30",
"@types/glob": "^5.0.30",
"@types/html-minifier": "^1.1.30",
"@types/lodash": "^4.14.54",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.51",
"@types/sinon": "^1.16.31",
"@types/sinon-chai": "^2.7.27",
"chai": "^3.5.0",
"cross-env": "^3.1.3",
"eslint": "^3.8.1",
"expect": "^1.19.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"ts-node": "3.3.0",
"tslint": "^3.15.1",
"typescript": "^2.1.4"
}
}