-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "motion.md",
"version": "0.1.0",
"private": true,
"description": "Runtime-neutral MOTION.md specification and reference tooling",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"motionmd": "packages/cli/bin/motionmd.mjs"
},
"scripts": {
"lint": "node packages/cli/bin/motionmd.mjs lint examples/minimal/MOTION.md",
"test": "node --test tests/*.test.mjs",
"check": "npm run test && node packages/cli/bin/motionmd.mjs lint examples/minimal/MOTION.md && node packages/cli/bin/motionmd.mjs lint examples/expressive/MOTION.md && node packages/cli/bin/motionmd.mjs lint examples/procedural/MOTION.md && node packages/cli/bin/motionmd.mjs lint examples/reduced-motion/MOTION.md"
},
"license": "MIT"
}