forked from jeremyckahn/shifty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.67 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "shifty",
"version": "2.20.0",
"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.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@jeremyckahn/minami": "^1.3.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.3",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-prettier": "^3.1.4",
"gh-pages": "^2.2.0",
"husky": "^1.3.1",
"jest": "^28.1.3",
"jsdoc": "^3.6.5",
"nodemon": "^1.18.10",
"npm-run-all": "^4.1.5",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"serve": "^14.1.2",
"typescript": "^4.4.4",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"build": "webpack",
"typegen": "tsc",
"typegen:watch": "tsc --watch",
"test": "jest --watch",
"ci": "npm run lint && jest && tsc",
"doc": "jsdoc -c .jsdoc src/*.js",
"doc:view": "serve dist/doc",
"doc:watch": "nodemon --exec \"npm run doc\" --watch src --watch ./ --ext js,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/**/*.js' webpack.* --write"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run ci"
}
},
"files": [
"src",
"dist"
],
"contributors": [
{
"name": "Miller Medeiros",
"email": "[email protected]"
},
{
"name": "Carl Olsen",
"email": "[email protected]"
},
{
"name": "Joe Lambert"
},
{
"name": "Roman Kofman",
"email": "[email protected]"
},
{
"name": "Jonathan Raoult",
"email": "[email protected]"
},
{
"name": "Adrian Voica",
"email": "[email protected]"
},
{
"name": "Arthur Pacaud",
"email": "[email protected]"
},
{
"email": "[email protected]"
},
{
"name": "Hooman Askari",
"email": "[email protected]"
}
],
"license": "MIT",
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}