forked from frmatthew/exsurge
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
55 lines (55 loc) · 1.62 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
{
"name": "exsurge",
"version": "1.10.5",
"description": "A JavaScript library for rendering Gregorian Chant in square note notation",
"main": "src/index.js",
"types": "src/index.d.ts",
"module": "src/index.js",
"scripts": {
"build": "webpack --progress --colors --mode=build",
"build-dev": "webpack --mode=dev",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha --compilers js:babel-core/register --colors -w ./test/*.js",
"version": "npm run changelog && git add CHANGELOG.md dist/",
"postversion": "git push && git push --tags",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.5.2",
"babel-eslint": "^4.1.8",
"babel-loader": "^6.2.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^1.6.0",
"eslint-loader": "^1.2.1",
"file-loader": "^0.8.5",
"mocha": "^2.4.5",
"surge": "^0.17.7",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"yargs": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frmatthew/exsurge.git"
},
"author": "Fr. Matthew Spencer, O.S.J. <[email protected]> (http://marello.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/frmatthew/exsurge/issues"
},
"homepage": "https://github.com/frmatthew/exsurge#readme",
"keywords": [
"gregorian",
"chant",
"square",
"note",
"solesmes"
],
"dependencies": {
"opentype.js": "^1.1.0"
}
}