-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"name": "music-fns",
"version": "0.1.3",
"description":
"JavaScript music utility library that contains small music notation related functions.",
"main": "dist",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --config ./.eslintrc src",
"lint:fix": "npm run lint -- --fix",
"flow": "flow",
"build": "babel src --out-dir dist --ignore test.js",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madewithlove/music-fns.git"
},
"engines": {
"node": ">=8"
},
"keywords": ["music", "utility", "audio"],
"author": "",
"files": ["dist"],
"license": "MIT",
"bugs": {
"url": "https://github.com/madewithlove/music-fns/issues"
},
"homepage": "https://github.com/madewithlove/music-fns#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-modern-regexp": "^0.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.66.0",
"jest": "^22.4.2",
"prettier": "^1.10.2"
}
}