-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 2.18 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
{
"name": "serve-sofa-hrir",
"exports": "serveSofaHrir",
"version": "0.4.2",
"description": "Utility to fetch and shape sofa formated HRIR from server",
"main": "./dist/",
"standalone": "serveSofaHrir",
"scripts": {
"lint": "eslint ./src/ ./test/ && jscs --verbose ./src/ ./test/",
"lint-examples": "eslint -c examples/.eslintrc ./examples/*.html",
"compile": "rm -rf ./dist && babel ./src/ --out-dir ./dist/",
"browserify": "browserify ./src/index.js -t [ babelify ] --standalone serveSofaHrir > serveSofaHrir.js",
"bundle": "npm run lint && npm run test && npm run doc && npm run compile && npm run browserify",
"doc": "esdoc -c esdoc.json",
"test": "browserify test/*/*.js -t [ babelify ] --exclude 'test/*/*_listen.js*' --exclude 'test/*/*_issues.js' | tape-run",
"test-browser": "browserify test/*/*.js -t [ babelify ] --exclude 'test/*/*_listen.js*' --exclude 'test/*/*_issues.js' | testling -u",
"test-listen": "browserify test/*/*_listen.js -t [ babelify ] | tape-run",
"test-issues": "browserify test/*/*_issues.js -t [ babelify ] | tape-run",
"watch": "watch 'npm run browserify && echo $( date ): browserified' ./src/"
},
"authors": [
"Arnau Julià <[email protected]>",
],
"license": "BSD-3-Clause",
"dependencies": {
"gl-matrix": "^2.4.0",
"kd.tree": "akshaylive/node-kdt#39bc780704a324393bca68a17cf7bc71be8544c6",
"fractional-delay": "Ircam-RnD/fractional-delay#gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/Ircam-RnD/serveSofaHrir"
},
"engines": {
"node": "0.12 || 4",
"npm": ">=1.0.0 <3.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^4.1.8",
"babel-preset-es2015": "^6.5.0",
"babelify": "^7.2.0",
"blue-tape": "^0.1.11",
"browserify": "^12.0.2",
"esdoc": "^0.4.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^1.0.2",
"eslint-plugin-html": "^1.4.0",
"jscs": "2.11.0",
"jscs-jsdoc": "^1.3.1",
"tape": "^4.4.0",
"tape-run": "^2.1.2",
"testling": "^1.7.1",
"watch": "^0.17.1"
}
}