-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 893 Bytes
/
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
{
"name": "amixer-parser",
"version": "1.0.4",
"main": "lib/index.js",
"author": "Lionel Penaud",
"repository" : {
"type": "git",
"url": "https://github.com/lionep/amixer-parser.git"
},
"license": "MIT",
"scripts": {
"test": "eslint src",
"compile": "babel src/ -d lib/ -s",
"compile:watch": "npm run compile -- -w",
"prepublish": "npm run compile"
},
"dependencies": {
"bluebird": "^3.4.6",
"glob": "^7.1.1",
"lodash": "^4.17.1"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-class-properties": "^6.16.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0"
}
}