-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
54 lines (54 loc) · 1.55 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
{
"name": "@adobe/json-formula",
"version": "1.1.2",
"description": "json-formula Grammar and implementation",
"main": "src/json-formula.js",
"type": "module",
"files": [
"src"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prebuild": "rm -rf ./dist/",
"eslint": "eslint src test",
"test": "jest",
"build": "webpack --config webpack.tutorial.js",
"start": "webpack serve --config webpack-devserver.config.js",
"spec": "cd doc && sh scripts/makeDocs.sh",
"docs": "jsdoc2md -f src/functions.js -g none > doc/functions.md",
"jsdocs": "jsdoc2md -f src/json-formula.js -g none > doc/output/JSDOCS.md"
},
"repository": {
"type": "git",
"url": "[email protected]/adobe/json-formula.git"
},
"author": "Adobe Systems",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/eslint-parser": "^7.23.3",
"@babel/node": "^7.20.2",
"@babel/preset-env": "^7.23.6",
"antlr4": "4.13.1",
"asciidoctor": "^3.0.0",
"babel-loader": "^9.1.0",
"copy-webpack-plugin": "^11.0.0",
"ebnf-parser": "^0.1.10",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.0",
"express": "^4.18.2",
"html-inline-script-webpack-plugin": "^3.1.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.3.1",
"jest-cli": "^29.7.0",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.7.3"
}
}