-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.26 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "liyad",
"private": false,
"version": "0.6.0",
"description": "Liyad (Lisp yet another DSL interpreter) is very small Lisp interpreter written in JavaScript.",
"keywords": [
"lisp",
"S-expression",
"DSL",
"JSX",
"LSX",
"interpreter",
"parser",
"REPL",
"TypeScript",
"Liyad",
"react",
"redagate"
],
"main": "./bin/index.js",
"module": "./modules/index.js",
"modules.root": "./modules",
"types": "./bin/index.d.ts",
"typings": "./bin/index.d.ts",
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@types/jasmine": "^4.0.3",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"jasmine": "^4.2.1",
"jasmine-spec-reporter": "^7.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"red-agate": "^0.5.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"source-map-loader": "^4.0.0",
"ts-loader": "^9.3.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"clean": "run-s clean:cjs clean:esm clean:spec clean:dist",
"clean:cjs": "rimraf ./bin",
"clean:esm": "rimraf ./modules",
"clean:spec": "rimraf ./bin.test",
"clean:dist": "rimraf ./dist",
"build": "run-s build:cjs build:esm build:esm:2 build:esm:3 build:spec",
"build:cjs": "tsc --module commonjs --target es2015 --outDir bin --declaration --declarationDir ./bin",
"build:esm": "tsc --outDir modules --declaration --declarationDir ./modules",
"build:esm:2": "node -e \"require('./build-scripts/copy-as-mjs').copyAsMjs('modules','modules')\"",
"build:esm:3": "shx cp ./build-scripts/pkg.json ./modules/package.json",
"build:spec": "webpack-cli --mode=development --config webpack.config.js",
"build:spec2": "tsc -p tsconfig.spec.json --module commonjs --target es2015 --outDir bin.test",
"build:dist": "run-s build:dist:prod",
"build:dist:prod": "run-s build:dist:prod:1 build:dist:2",
"build:dist:dev": "run-s build:dist:dev:1 build:dist:2",
"build:dist:prod:1": "cross-env NODE_ENV=production webpack-cli --mode=production --config webpack.dist.config.js",
"build:dist:dev:1": "webpack-cli --mode=development --config webpack.dist.config.js",
"build:dist:2": "shx cp -R ./src.dist/* ./dist",
"lint": "tslint ./src/**/*.ts -t verbose",
"lint:es": "run-s lint:es:main lint:es:spec",
"lint:es:main": "eslint -c ./.eslintrc.build.json --ext .js,.ts --ignore-pattern src/_spec/ ./src/",
"lint:es:spec": "eslint -c ./.eslintrc.spec.json --ext .js,.ts ./src/_spec/",
"test": "jasmine",
"prepublishOnly": "run-s clean build test lint"
},
"repository": {
"type": "git",
"url": "https://github.com/shellyln/liyad.git"
},
"author": "shellyln",
"homepage": "https://shellyln.github.io/",
"bugs": {
"url": "https://github.com/shellyln/liyad/issues"
},
"license": "ISC"
}