-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpackage.json
87 lines (87 loc) · 2.66 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
79
80
81
82
83
84
85
86
87
{
"name": "shifty",
"version": "3.0.3",
"homepage": "http://jeremyckahn.github.io/shifty/doc/",
"author": "Jeremy Kahn <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/jeremyckahn/shifty.git"
},
"description": "The fastest JavaScript animation engine on the web",
"browser": "dist/shifty.js",
"main": "dist/shifty.node.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@types/bluebird": "^3.5.38",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.3",
"eslint": "^8.43.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^1.3.1",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"serve": "^14.1.2",
"source-map-loader": "^4.0.1",
"ts-loader": "^9.4.2",
"typedoc": "^0.23.28",
"typedoc-plugin-mdn-links": "^3.0.3",
"typescript": "^4.9.5",
"webpack": "^5.88.1",
"webpack-cli": "^5.0.2"
},
"scripts": {
"build": "webpack",
"typegen": "tsc",
"typegen:watch": "tsc --watch",
"test": "jest --watch",
"test:coverage": "jest --coverage",
"ci": "npm run lint && jest --reporters=default --reporters=jest-junit --coverage && tsc",
"doc": "typedoc src/index.ts",
"doc:view": "serve dist/doc",
"doc:watch": "nodemon --exec \"npm run doc\" --watch src --watch ./ --ext ts,js,json,md --ignore dist",
"doc:live": "run-p doc:watch doc:view",
"lint": "eslint src webpack.*",
"deploy-docs": "npm run build && npm run doc && gh-pages -d dist",
"preversion": "npm run ci",
"postversion": "git push && git push --tags",
"prettier": "prettier 'src/**/*.ts' webpack.* --write"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run ci"
}
},
"files": [
"src",
"dist"
],
"license": "MIT",
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}