-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.86 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
{
"name": "agastya",
"version": "4.2.0",
"description": "Web accessibility made simple",
"main": "docs/index.js",
"module": "docs/index.js",
"types": "docs/index.d.ts",
"files": [
"docs"
],
"repository": "[email protected]:AnandChowdhary/agastya.git",
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"scripts": {
"start": "concurrently \"yarn watch\" \"yarn watch-demo\" \"yarn serve\" \"yarn prettier-watch\"",
"build": "webpack -p --config webpack.config.ts",
"build-demo": "tsc docs/demo.ts",
"watch": "onchange 'src/**/*.{js,jsx,ts,tsx,scss,css}' -- yarn build",
"watch-demo": "onchange 'docs/{demo.ts,scss,css}' -- yarn build-demo",
"serve": "cd docs && live-server && cd ../",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-without-coverage": "jest",
"prettier-watch": "onchange 'src/**/*.{js,jsx,ts,tsx,scss,css}' -- prettier --write {{changed}}"
},
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.1",
"@types/scriptjs": "^0.0.2",
"@types/webpack": "^4.4.24",
"concurrently": "^5.0.0",
"coveralls": "^3.0.2",
"css-loader": "^5.0.0",
"jest": "^25.1.0",
"live-server": "^1.2.1",
"node-sass": "^4.11.0",
"onchange": "^7.0.0",
"prettier": "^2.0.2",
"sass-loader": "^10.0.0",
"style-loader": "^2.0.0",
"ts-jest": "^25.0.0",
"ts-loader": "^8.0.0",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"typescript": "^3.3.3",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/tests/"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"scriptjs": "^2.5.9"
}
}