-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.87 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
{
"name": "wc-compiler",
"version": "0.15.1",
"description": "Experimental native Web Components compiler.",
"repository": {
"type": "git",
"url": "https://github.com/ProjectEvergreen/wcc.git"
},
"main": "src/wcc.js",
"type": "module",
"author": "Owen Buckley <[email protected]>",
"keywords": [
"Web Components",
"SSR",
"JSX",
"Greenwood"
],
"license": "MIT",
"engines": {
"node": ">=14"
},
"files": [
"src/",
"dist/wcc.dist.cjs"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf ./dist",
"lint": "eslint --ignore-pattern \"*.json\" \"*.*js\" \"./src/**/**/*.js*\" \"./sandbox/**/**/*.js*\" \"./docs/**/*.md\" \"./test/**/**/*.js*\"",
"docs:dev": "concurrently \"nodemon --watch src --watch docs -e js,md,css,html,jsx ./build.js\" \"http-server ./dist --open\"",
"docs:build": "node ./build.js",
"docs:serve": "npm run clean && npm run docs:build && http-server ./dist --open",
"sandbox": "npm run clean && concurrently \"nodemon --loader ./test-exp-loader.js --watch src --watch sandbox -e js,md,css,html,jsx,ts ./sandbox.js\" \"http-server ./dist --open\" \"livereload ./dist\"",
"start": "npm run docs:serve",
"test": "mocha --exclude \"./test/cases/jsx*/**\" --exclude \"./test/cases/ts*/**\" --exclude \"./test/cases/custom-extension/**\" \"./test/**/**/*.spec.js\"",
"test:exp": "c8 node --loader ./test-exp-loader.js ./node_modules/mocha/bin/mocha \"./test/**/**/*.spec.js\"",
"test:tdd": "npm run test -- --watch",
"test:tdd:exp": "npm run test:exp -- --watch",
"dist": "rollup -c rollup.config.js",
"prepublishOnly": "npm run clean && npm run dist"
},
"dependencies": {
"@projectevergreen/acorn-jsx-esm": "~0.1.0",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"astring": "^1.9.0",
"parse5": "^6.0.1",
"sucrase": "^3.35.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-syntax-import-assertions": "^7.24.1",
"@babel/preset-react": "^7.24.1",
"@ls-lint/ls-lint": "^1.10.0",
"@mapbox/rehype-prism": "^0.8.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"c8": "^7.11.2",
"chai": "^4.3.6",
"concurrently": "^7.1.0",
"eslint": "^8.14.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"http-server": "^14.1.0",
"jsdom": "^19.0.0",
"livereload": "^0.9.3",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"prismjs": "^1.28.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-raw": "^6.1.1",
"rehype-slug": "^5.0.1",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"remark-toc": "^8.0.1",
"rimraf": "^3.0.2",
"rollup": "^4.26.0",
"simple.css": "^0.1.3",
"unified": "^10.1.2"
}
}