-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.33 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
{
"name": "intween",
"version": "1.0.0-beta.7",
"description": "The Interactive Tweening Library",
"main": "dist/intween.js",
"module": "dist/intween.module.js",
"files": [
"dist/intween.js",
"dist/intween.min.js",
"dist/intween.module.js",
"LICENSE",
"package.json",
"README.md",
"src"
],
"scripts": {
"build": "rollup -c rollup.config.js && npm run test",
"dev": "rollup -c rollup.config.js -w -m inline",
"test": "BABEL_ENV=test mocha --require @babel/register --require @babel/register --colors ./test/*.spec.*js",
"test:watch": "mocha --require @babel/register --colors -w ./test/*.spec.*js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "sh deploy.sh",
"version": "npm run build",
"prepublish": "npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/wellcaffeinated/intween"
},
"keywords": [
"intween",
"intween.js",
"tween",
"animation",
"javascript"
],
"author": "wellcaffeinated",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellcaffeinated/intween/issues"
},
"homepage": "https://intween.wellcaffeinated.net",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.15.4",
"@babel/register": "^7.15.3",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"chai": "^4.1.2",
"core-js-pure": "^3.16.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-webpack-plugin": "^3.0.1",
"global": "^4.4.0",
"jsdom": "13.0.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"raw-loader": "^4.0.2",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2",
"rxjs": "^7.3.0",
"vuepress": "^1.0.2",
"webpack": "4"
},
"dependencies": {}
}