Skip to content

Commit 62f7e55

Browse files
committed
Version 1.0.0
1 parent 1dffe9f commit 62f7e55

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
src
2+
tests
3+
coverage/
4+
jest.config.js
5+
!lib/*.{js,d.ts}

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "smilebasic-file-parser",
2+
"name": "@sbapi-team/smilebasic-fileparser",
33
"version": "1.0.0",
44
"description": "A file parsing library, written in TypeScript, for SmileBASIC file formats",
55
"main": "lib/index.js",
@@ -12,7 +12,7 @@
1212
"build": "tsc -p src",
1313
"test": "yarn build && jest tests/",
1414
"coverage": "yarn test --coverage && yarn jest-coverage-badges",
15-
"postinstall": "yarn build"
15+
"prepublishOnly": "yarn build"
1616
},
1717
"devDependencies": {
1818
"@types/jest": "^26.0.23",
@@ -23,6 +23,9 @@
2323
"ts-jest": "^26.5.6",
2424
"typescript": "^4.2.4"
2525
},
26+
"publishConfig": {
27+
"registry": "https://npm.pkg.github.com"
28+
},
2629
"dependencies": {
2730
"ndarray": "^1.0.19"
2831
}

0 commit comments

Comments
 (0)