UNPKG

1.78 kBJSONView Raw
1{
2 "name": "@sutton-signwriting/core",
3 "description": "a javascript package for node and browsers that supports general processing of the Sutton SignWriting script",
4 "version": "1.4.2",
5 "keywords": [
6 "SignWriting",
7 "sign language",
8 "text processing",
9 "regular expressions",
10 "ASCII",
11 "Unicode",
12 "query",
13 "style",
14 "conversion"
15 ],
16 "homepage": "https://www.sutton-signwriting.io/core/",
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/sutton-signwriting/core.git"
20 },
21 "bugs": "https://github.com/sutton-signwriting/core/issues",
22 "license": "MIT",
23 "author": {
24 "name": "Steve Slevinski",
25 "email": "slevinski@signwriting.org",
26 "url": "https://SteveSlevinski.me"
27 },
28 "files": [
29 "README.md",
30 "CHANGELOG.md",
31 "LICENSE",
32 "package.json",
33 "src/*",
34 "core.*",
35 "convert/*",
36 "fsw/*",
37 "fswquery/*",
38 "style/*",
39 "swu/*",
40 "swuquery/*"
41 ],
42 "main": "core.min.cjs",
43 "module": "core.min.mjs",
44 "browser": "core.min.js",
45 "unpkg": "core.min.js",
46 "scripts": {
47 "prebuild": "rimraf core.* style fsw fswquery swu swuquery convert",
48 "build": "rollup -c",
49 "postbuild": "node subpackages.js",
50 "test": "jest || true",
51 "test:watch": "jest --watchAll || true",
52 "docs": "npx documentation build src/index.js --config documentation.yml -f html -o docs",
53 "postdocs": "node addstyle.js",
54 "docs:server": "npx documentation serve --watch src/index.js --config documentation.yml"
55 },
56 "devDependencies": {
57 "@babel/preset-env": "^7.14.7",
58 "@rollup/plugin-babel": "^5.3.0",
59 "@rollup/plugin-node-resolve": "^13.0.0",
60 "jest": "^27.0.5",
61 "rimraf": "^3.0.2",
62 "rollup": "^2.52.2",
63 "rollup-plugin-terser": "^7.0.2"
64 }
65}