-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "jspm-watch",
"version": "1.0.2",
"description":
"File watcher that manages JSPM bundling and cache invalidation",
"main": "index.js",
"files": [
"lib/progress.js",
"lib/jspm-worker.js",
"lib/jspm-worker-orchestrator.js",
"index.js"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fyodorvi/jspm-watch.git"
},
"keywords": ["jspm", "watch", "bundle"],
"author": "Fyodor Yakimchouk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fyodorvi/jspm-watch/issues"
},
"homepage": "https://github.com/fyodorvi/jspm-watch#readme",
"dependencies": {
"chalk": "^1.1.1",
"chokidar": "^1.4.3",
"fancy-log": "^1.2.0",
"fs-extra": "^0.26.5",
"glob": "^7.0.3",
"globby": "^4.0.0",
"lodash": "^4.6.1",
"minimatch": "^3.0.0",
"node-ipc": "^7.0.0",
"progress": "^1.1.8",
"q": "^1.4.1",
"short-id": "0.1.0-1",
"string-format": "^0.5.0",
"time-stamp": "^1.0.0"
},
"peerDependencies": {
"jspm": ">= 0.16.12"
},
"devDependencies": {
"chai": "^3.5.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3"
}
}