Skip to content

Commit 1a682da

Browse files
Nikos TheodoropoulosNikos Theodoropoulos
authored andcommitted
setting npm package to public
1 parent 70d559e commit 1a682da

File tree

1 file changed

+9
-44
lines changed

1 file changed

+9
-44
lines changed

package.json

Lines changed: 9 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,86 +1,51 @@
11
{
2-
32
"name": "@robotical/scratch-to-python-transpiler",
4-
53
"version": "1.0.2",
6-
74
"description": "Transpile Scratch project files to python code",
8-
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/robotical/scratch-to-python-transpiler.git"
8+
},
9+
"license": "ISC",
10+
"publishConfig": {
11+
"registry": "https://registry.npmjs.org/",
12+
"access": "public"
13+
},
914
"main": "lib/index.js",
10-
1115
"types": "lib/index.d.ts",
12-
1316
"scripts": {
14-
1517
"build": "tsc",
16-
1718
"watch": "tsc -w",
18-
1919
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
20-
2120
"lint": "eslint \"src/**/*.ts\"",
22-
2321
"test": "jest --config jestconfig.json",
2422
"prepare": "npm run build"
2523
},
26-
2724
"files": [
28-
2925
"lib/**/*"
30-
3126
],
32-
3327
"keywords": [
34-
3528
"Scratch",
36-
37-
"mit-scratch",
38-
39-
"sb2",
40-
4129
"sb3",
42-
4330
"robotical",
44-
4531
"python"
46-
4732
],
48-
4933
"author": "Nikos Theodoropoulos <nikos@robotical.io> (https://robotical.io/)",
50-
5134
"devDependencies": {
52-
5335
"@types/jest": "^24.0.22",
54-
5536
"@types/jszip": "^3.1.6",
56-
5737
"@types/prettier": "^1.18.3",
58-
5938
"@typescript-eslint/eslint-plugin": "^2.21.0",
60-
6139
"@typescript-eslint/parser": "^2.21.0",
62-
6340
"eslint": "^6.8.0",
64-
6541
"eslint-config-prettier": "^6.10.0",
66-
6742
"eslint-plugin-prettier": "^3.1.2",
68-
6943
"jest": "^24.9.0",
70-
7144
"ts-jest": "^24.1.0",
72-
7345
"typescript": "^3.7.2"
74-
7546
},
76-
7747
"dependencies": {
78-
7948
"jszip": "^3.10.1",
80-
8149
"prettier": "^1.19.1"
82-
8350
}
84-
8551
}
86-

0 commit comments

Comments
 (0)