-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
{
"name": "@puresamari/simonlang",
"version": "0.0.4",
"description": "Simonlang is the best programming language on the planet.",
"main": "./lib/cli/index.js",
"bin": {
"simonlang": "lib/cli/index.js"
},
"scripts": {
"start": "nodemon",
"create": "npm run build && npm run test",
"build": "rm -rf lib && tsc -p . && webpack",
"test": "npm i -g && simonlang examples/test.simon",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"prepublish": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puresamari/simon.git"
},
"author": "Simon Rothert <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/puresamari/simon/issues"
},
"homepage": "https://github.com/puresamari/simon#readme",
"devDependencies": {
"@types/node": "^14.0.20",
"nodemon": "^2.0.4",
"ts-loader": "^8.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"directories": {
"example": "examples",
"lib": "lib"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"tslib": "1.13.0"
},
"keywords": [
"simonlang",
"jsdialect"
]
}