-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.42 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
{
"name": "abletonlink-redux",
"version": "0.0.7",
"description": "Helper actions and reducers to tie Ableton Link to a Redux state store.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"build": "rm -Rf lib/* && babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colinsullivan/abletonlink-redux.git"
},
"keywords": [
"ableton-link",
"redux",
"node.js"
],
"author": "Colin Sullivan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/colinsullivan/abletonlink-redux/issues"
},
"homepage": "https://github.com/colinsullivan/abletonlink-redux#readme",
"dependencies": {
"abletonlink": "0.0.6",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"redux": "^3.7.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.5.3"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"browser": false,
"node": true,
"es6": true,
"mocha": true
},
"rules": {
"no-console": 0,
"no-use-before-define": "error",
"block-scoped-var": "error"
}
},
"browser": "./lib/index_browser.js"
}