-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 693 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 693 Bytes
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
{
"name": "cramjam",
"version": "1.0.0",
"description": "for running wasm tests.",
"author": "Miles Granger",
"license": "MIT",
"homepage": "https://github.com/milesgranger/cramjam#readme",
"main": "tests/test_cramjam_pyodide.js",
"dependencies": {
"prettier": "^2.7.1",
"pyodide": "^0.26.2"
},
"scripts": {
"test": "node tests/test_cramjam_pyodide.js",
"format": "prettier --write 'tests/test_cramjam_pyodide.js'",
"lint": "prettier --check 'tests/test_cramjam_pyodide.js'"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"printWidth": 119,
"bracketSpacing": false,
"arrowParens": "avoid"
}
}