forked from artsalliancemedia/node-cpl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 714 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 714 Bytes
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
{
"name": "cpl",
"description": "SMPTE CPL parsing library",
"author": "Arts Alliance Media <matt.sullivan@artsalliancemedia.com>",
"version": "0.0.4",
"bin": {
"node-cpl": "./lib/node-cpl.js"
},
"main": "./index",
"scripts": {
"test": "mocha --globals domain,_events,_maxListeners",
"start": "node ./bin/http-server"
},
"repository": {
"type": "git",
"url": "https://github.com/artsalliancemedia/node-cpl"
},
"bugs": {
"url": "https://github.com/artsalliancemedia/node-cpl/issues"
},
"dependencies": {
"sax": "0.4.2",
"underscore": "1.4.x"
},
"devDependencies": {
"mocha": "1.x",
"async": "0.x"
},
"engines": {
"node": ">=0.6"
}
}