-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 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
70
71
72
73
74
75
76
77
78
{
"name": "sl-web-face",
"description": "Library for animating faces using web canvas and audio.",
"version": "1.1.5",
"author": "Erik Hermansen",
"license": "MIT",
"private": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"sl-web-audio": "*",
"sl-web-speech": "*",
"yaml": "^2.1.3"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && npm run docs",
"clean": "rm -rf coverage dist docs/dist",
"clean:modules": "rm -rf node_modules package-lock.json && npm install",
"docs": "jsdoc -c ./docs/conf.json -d ./docs/dist/",
"publish": "npm run build && npm publish",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts"
},
"devDependencies": {
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"jest": "^29.2.2",
"jsdoc": "^3.6.11",
"jsdoc-plugin-typescript": "^2.2.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"./src/**/*.{js,ts}",
"!./src/3rdParty/**",
"!./src/index.ts"
],
"coverageThreshold": {
"global": {
"lines": 100
}
},
"moduleDirectories": [
"node_modules",
"src"
],
"globals": {
"window": {}
}
}
}