-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.02 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
{
"private": true,
"name": "@accessifywiki/core",
"description": "Fixing the Web for all, one site at a time.",
"version": "2.0.0-alpha",
"license": "?",
"main": "lib/index.js",
"repository": "https://github.com/accessifywiki/accessifywiki-core.git",
"scripts": {
"build": "tsc --lib es6,dom -outDir lib src/index.ts src/server.ts",
"build:esm": "tsc --target es6 --lib dom -outDir esm src/accessifywiki.ts",
"aria:process": "ts-node src/index.ts --aria-process",
"start": "ts-node src/server.ts",
"start:orig": "live-server --port=9001 --no-browser",
"test:validator": "ts-node src/index.ts --validator-test",
"test": "jest --colors"
},
"devDependencies": {
"@types/jest": "^25.1.0",
"@types/node": "^13.5.1",
"ajv": "^6.11.0",
"jest": "^25.1.0",
"live-server": "^1.2.1",
"ts-jest": "^25.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"useStderr": true,
"verbose": true
}
}