This repository was archived by the owner on May 6, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.22 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
{
"name": "@concept-not-found/module-linking-polyfill",
"private": true,
"description": "https://github.com/WebAssembly/module-linking polyfill",
"keywords": [
"webassembly",
"module linking",
"polyfill"
],
"repository": {
"type": "git",
"url": "https://github.com/concept-not-found/module-linking-polyfill.git"
},
"bugs": {
"url": "https://github.com/concept-not-found/module-linking-polyfill/issues"
},
"homepage": "https://github.com/concept-not-found/module-linking-polyfill",
"scripts": {
"start": "cd packages/demo && npm start",
"lint": "eslint . --fix",
"lint:ci": "eslint .",
"test": "lerna run test --stream --no-bail",
"pretest-target-compatibility": "rm -rf dist/target-compatibility && mkdir -p dist/target-compatibility/original",
"test-target-compatibility:original": "find . -name '*.js' |egrep -v '.history/|/node_modules/|^./dist/|^./packages/transformer/dedent.js' | xargs -I FILE -n 1 cp --parent -r FILE dist/target-compatibility/original/",
"test-target-compatibility:babel": "babel . --quiet --delete-dir-on-start --out-dir dist/target-compatibility/babeled",
"test-target-compatibility:normalize": "prettier --loglevel silent --print-width 1 --write dist/target-compatibility",
"test-target-compatibility:diff": "diff -wBry --suppress-common-lines dist/target-compatibility/original dist/target-compatibility/babeled | egrep -v '^\\s*//|^/\\*|^\\s+<$|// eslint-disable'",
"test-target-compatibility": "npm run test-target-compatibility:original && npm run test-target-compatibility:babel && npm run test-target-compatibility:normalize && npm run test-target-compatibility:diff"
},
"author": "Ronald Chen <pyrogx1133@gmail.com>",
"license": "Apache-2.0",
"type:": "module",
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@babel/cli": "7.16.7",
"@babel/core": "7.16.7",
"@babel/preset-env": "7.16.7",
"core-js": "3.20.2",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.0.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "40.1.0",
"lerna": "4.0.0",
"prettier": "2.5.1"
}
}