-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
{
"name": "@scale8/s8-interpreter",
"version": "0.3.2",
"description": "Javascript Interpreter",
"keywords": [
"s8",
"scale8",
"interpreter"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf coverage dist tmp logs",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"build": "webpack",
"test": "jest",
"dev": "webpack --config=webpack.demo.config.js & lite-server --baseDir=\"demo\"",
"prepare": "yarn build"
},
"files": [
"dist/**/*"
],
"repository": "git@github.com:scale8/s8-interpreter.git",
"license": "Apache-2.0",
"dependencies": {
"@types/node": "^16.7.13",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^1.1.4",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"lite-server": "^2.6.1",
"ts-jest": "^27.0.5"
}
}