-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.89 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
56
57
58
59
60
61
62
63
64
65
{
"name": "raj-lang",
"version": "0.0.0",
"description": "A simple, easy to use compiled programming language that can be compiled to multiple languages from a single syntax.",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf dist/* coverage",
"dev": "webpack-dev-server --entry ./src/main.js --output-filename ./dist/index.js --mode development",
"build": "webpack --mode production",
"build:only": "webpack --mode production",
"test": "jest --runInBand",
"test:cover": "jest --runInBand --coverage",
"lint": "eslint --cache --fix src",
"prettier": "prettier --write .",
"prepare": "husky install",
"prebuild": "npm run test && npm run clean && npm run lint && npm run prettier",
"prepublishOnly": "npm run build"
},
"author": {
"name": "Rajaniraiyn",
"email": "rajaniraiyn@gmail.com",
"url": "https://rajaniraiyn.github.io/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rajlang/Raj-JavaScript.git"
},
"keywords": [
"javascript",
"language",
"js",
"raj",
"raj-lang",
"raj lang",
"compiled",
"programming language"
],
"bugs": {
"url": "https://github.com/rajlang/Raj-JavaScript/issues"
},
"homepage": "https://github.com/rajlang/Raj-JavaScript#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.25.4",
"babel-loader": "^9.2.1",
"eslint": "^9.11.1",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"jest": {
"testEnvironment": "node"
}
}