-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.97 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
{
"name": "bundless",
"version": "0.0.82",
"description": "Experimental bundle-free dependency loader",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"author": "Jiri Tobisek <[email protected]> (https://github.com/tobich)",
"license": "SEE LICENSE IN LICENSE.md",
"private": false,
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist && mkdir dist",
"pretest": "npm run build",
"test": "npm run test:e2e && npm run test:integration && npm run test:unit",
"test:unit": "mocha --reporter mocha-env-reporter ./dist/test/unit",
"test:integration": "mocha --reporter mocha-env-reporter ./dist/test/integration",
"test:e2e": "mocha --reporter mocha-env-reporter dist/test/e2e/e2e.spec.js",
"build": "npm run clean && tsc",
"prestart": "npm run build",
"start": "node dist/src/index.js",
"install": "cd node-libs && npm install"
},
"repository": {
"type": "git",
"url": "https://github.com/wix/bundless"
},
"bugs": {
"url": "https://github.com/wix/bundless/issues"
},
"homepage": "https://github.com/wix/bundless",
"devDependencies": {
"@types/chai": "4.0.0",
"@types/chai-as-promised": "0.0.31",
"@types/fs-extra": "3.0.3",
"@types/karma": "0.13.35",
"@types/mocha": "2.2.41",
"@types/tmp": "0.0.33",
"bluebird": "3.5.0",
"chai": "4.0.2",
"chai-as-promised": "6.0.0",
"express": "4.15.3",
"fs-extra": "3.0.1",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-env-reporter": "1.0.13",
"mocha": "3.4.2",
"mocha-env-reporter": "2.0.4",
"mocha-loader": "1.1.1",
"portfinder": "1.0.13",
"rimraf": "2.6.1",
"source-map-support": "0.4.15",
"tmp": "0.0.31",
"typescript": "2.3.4"
},
"dependencies": {
"@types/lodash": "4.14.65",
"@types/node": "7.0.29",
"@types/semver": "5.3.31",
"@types/systemjs": "0.20.2",
"lodash": "4.17.4",
"semver": "5.3.0",
"systemjs": "0.19.43"
}
}