-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.73 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
{
"name": "piecemaker-api-client",
"description": "A client for JavaScript (+ Node.js) / Java (+ Processing) to access the Piecemaker-2 API developed for Motion Bank",
"url": "https://github.com/motionbank/piecemaker-api-client",
"keywords": [
"video",
"data",
"html5",
"client",
"API",
"annotation"
],
"author": "Florian Jenett <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/motionbank/piecemaker-api-client"
},
"scripts": {
"build": "npm run browserify && npm run uglify",
"browserify": "browserify src-js/api-promise.js -o releases/piecemaker-api-client-promise.js -t [ babelify ]",
"uglify": "uglifyjs --screw-ie8 --compress --mangle --output=releases/piecemaker-api-client-promise.min.js -- releases/piecemaker-api-client-promise.js"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions"
]
}
}
]
]
}
]
]
},
"dependencies": {
"superagent": "^3.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglify-es": "github:mishoo/UglifyJS2#harmony"
},
"main": "releases/piecemaker-api-client-current.js",
"version": "0.1.0"
}