-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 928 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
34
35
36
37
38
{
"name": "music-math",
"version": "0.1.1",
"description": "A utility library for calculating musical information e.g. a note from a frequency",
"license": "MIT",
"repository": "unkillbob/music-math",
"author": {
"name": "James Bunt",
"email": "james.bunt@vendhq.com",
"url": "github.com/unkillbob"
},
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"post-build": "onchange 'dist/**.js' 'test/**.js' -- npm test",
"watch": "npm run build -- -w & npm run post-build",
"test": "standard && mocha --compilers js:babel/register",
"prepublish": "npm run build && npm test"
},
"keywords": [
""
],
"dependencies": {},
"devDependencies": {
"babel": "*",
"chai": "^2.3.0",
"mocha": "*",
"onchange": "1.x",
"standard": "*"
},
"standard": {
"ignore": [
"coverage/**",
"dist/**",
"node_modules/**"
]
}
}