-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
64 lines (64 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
{
"name": "accessibility",
"version": "6.0.7",
"description": "add accessibility to your website",
"main": "index.js",
"exports": {
"import": "./dist/accessibility.js",
"require": "./dist/main.bundle.js"
},
"scripts": {
"start": "webpack serve --mode development",
"build": "webpack --config webpack.config.js --mode production",
"build.prod": "webpack --config webpack.config.js",
"build.esnext": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\"",
"build.all": "npm run build.prod && npm run build.esnext",
"test": "karma start karma.config.js"
},
"keywords": [
"accessibility",
"website",
"increase text size",
"underline links",
"text to speech",
"invert colors",
"gray hues",
"underline links",
"big cursor",
"reading guide",
"text to speech",
"speech to text",
"suppress animations"
],
"author": "Ran Buchnik <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"@types/jasmine": "2.8.7",
"@types/node": "7.0.0",
"jasmine-core": "3.1.0",
"karma": "^6.4.0",
"karma-jasmine": "1.1.2",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "5.0.0",
"source-map-loader": "4.0.1",
"tslint": "5.17.0",
"tslint-loader": "3.6.0",
"typescript": "5.4.5",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.9.3",
"ts-loader": "^9.4.2"
},
"typings": "index.d.ts",
"dependencies": {
"regenerator-runtime": "^0.14.1"
}
}