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