-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@sutton-signwriting/core",
"description": "a javascript package for node and browsers that supports general processing of the Sutton SignWriting script",
"version": "2.0.0",
"keywords": [
"SignWriting",
"sign language",
"text processing",
"regular expressions",
"ASCII",
"Unicode",
"query",
"style",
"conversion"
],
"homepage": "https://www.sutton-signwriting.io/core/",
"repository": {
"type": "git",
"url": "https://github.com/sutton-signwriting/core.git"
},
"bugs": "https://github.com/sutton-signwriting/core/issues",
"license": "MIT",
"author": {
"name": "Steve Slevinski",
"email": "[email protected]",
"url": "https://SteveSlevinski.me"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"package.json",
"src/*",
"core.*",
"convert/*",
"fsw/*",
"fswquery/*",
"style/*",
"swu/*",
"swuquery/*"
],
"main": "core.cjs",
"module": "core.mjs",
"browser": "core.js",
"unpkg": "core.js",
"scripts": {
"prebuild": "rimraf core.* style fsw fswquery swu swuquery convert",
"build": "rollup -c",
"postbuild": "./tsc.sh && node subpackages.js",
"tsdef": "./tsc.sh",
"test": "jest || true",
"test:watch": "jest --watchAll || true",
"testit": "jest",
"testit:watch": "jest --watchAll",
"docs": "npx documentation build src/*.js --config documentation.yml -f html -o docs",
"postdocs": "node addstyle.js",
"docs:server": "npx documentation serve --watch src/index.js --config documentation.yml"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"jest": "^27.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.52.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}