notations 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +5 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notations",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "author": "Sriram Panyam",
5
5
  "description": "A package for modelling, parsing, laying out carnatic musical notation",
6
6
  "homepage": "https://github.com/panyam/notations#readme",
@@ -80,6 +80,9 @@
80
80
  "lintfix",
81
81
  "test"
82
82
  ],
83
+ "directories": {
84
+ "lib": "lib"
85
+ },
83
86
  "scripts": {
84
87
  "clean": "rm -Rf lib && jest --clearCache && rm -rf static/lib",
85
88
  "builddocs": "npx typedoc",
@@ -92,13 +95,8 @@
92
95
  "lintfix": "eslint src --quiet --fix",
93
96
  "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
94
97
  "precommit-msg": "echo 'Pre-commit checks...' && exit 0",
95
- "prepare": "npm run build",
96
- "prepublishOnly": "echo prepublishOnly...",
97
98
  "preversion": "npm run build && npm run lintfix",
98
99
  "version": "git add -A src",
99
100
  "postversion": "git push && git push --tags"
100
- },
101
- "directories": {
102
- "lib": "lib"
103
101
  }
104
- }
102
+ }