-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.15 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
{
"name": "constexprjs",
"version": "1.4.1",
"description": "Evaluate and strip JS in your website",
"homepage": "https://amokfa.github.io/posts/constexprjs",
"repository": "https://github.com/amokfa/ConstexprJS",
"main": "compiler.js",
"bin": {
"constexprjs": "./constexpr.js"
},
"scripts": {
"lint": "eslint '**/*.js'",
"fix": "eslint '**/*.js' --fix"
},
"keywords": [
"static site generator",
"jekyll",
"compiler",
"next.js",
"nuxt.js",
"nest.js"
],
"files": [
"constexpr.js",
"compiler.js",
"injections",
"utils.js",
"README.md"
],
"author": "Sagar Tiwari <iaansagar@gmail.com> (https://amokfa.github.io)",
"license": "ISC",
"dependencies": {
"argparse": "^2.0.1",
"chalk": "^4.1.0",
"chrome-debugging-client": "^2.0.0",
"express": "^4.17.1",
"js-beautify": "^1.14.11",
"lodash": "^4.17.21",
"node-html-parser": "^3.1.0",
"random-seed": "^0.3.0",
"url-join": "^4.0.1"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1"
}
}