This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.86 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.86 KB
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
{
"name": "@incodelang/compiler",
"version": "2.0.9",
"description": "The official Compiler for the InCode Programming Language",
"main": "dist/cjs/incode.compiler.bundle.min.js",
"module": "dist/esm/incode.compiler.bundle.min.js",
"types": "dist/types",
"scripts": {
"pipeline": "npm run clean && npm run prettier && npm run test && npm run build && npm run build && npm run bundle:esm && npm run bundle:cjs && npm run minify:cjs && npm run minify:esm",
"clean": "rimraf dist",
"test": "jest",
"prettier": "prettier --write src/**/*.{ts,tsx,js}",
"build": "tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
"bundle:esm": "rollup dist/esm/index.js -c rollup.config.js -o dist/esm/incode.compiler.bundle.js",
"bundle:cjs": "rollup dist/cjs/index.js -c rollup.config.js -o dist/cjs/incode.compiler.bundle.js",
"minify:esm": "uglifyjs dist/esm/incode.compiler.bundle.js --compress --v8 --webkit --no-rename --keep-fnames --output dist/esm/incode.compiler.bundle.min.js",
"minify:cjs": "uglifyjs dist/cjs/incode.compiler.bundle.js --compress --v8 --webkit --no-rename --keep-fnames --output dist/cjs/incode.compiler.bundle.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InCodeDevs/Compiler.git"
},
"author": "The InCode Developers",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/InCodeDevs/Compiler/issues"
},
"homepage": "https://github.com/InCodeDevs/Compiler#readme",
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/js-beautify": "^1.13.3",
"@types/node": "^17.0.18",
"js-beautify": "^1.14.0",
"prettier": "^2.5.1",
"rollup": "^2.67.3",
"uglify-js": "^3.15.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}