-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
package.json
76 lines (76 loc) · 1.97 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
{
"name": "velocity-animate",
"version": "2.0.6",
"description": "Accelerated JavaScript animation.",
"keywords": [
"velocity",
"animation",
"jquery",
"animate",
"ui",
"velocity.js",
"velocityjs",
"javascript"
],
"homepage": "http://velocityjs.org",
"bugs": {
"url": "http://github.com/julianshapiro/velocity/issues"
},
"license": "MIT",
"authors": [
{
"name": "Julian Shapiro",
"url": "http://julian.com/"
},
{
"name": "Ryc O'Chet",
"url": "https://github.com/Rycochet"
}
],
"scripts": {
"start": "rollup -w -c --environment BUILD,TEST",
"build": "rollup -c --environment BUILD,MINIFY,TEST",
"lint": "tslint src/**/*.ts src-ui/**/*.ts test/src/**/*.ts",
"test": "rollup -c --environment TEST",
"version": "npm run build && auto-changelog && git add ."
},
"main": "velocity.min.js",
"module": "velocity.es5.js",
"types": "velocity.d.ts",
"repository": "julianshapiro/velocity",
"files": [
"velocity.js",
"velocity.d.ts",
"velocity.es5.js",
"velocity.es5.js.map",
"velocity.js.map",
"velocity.min.js",
"velocity.ui.js",
"velocity.ui.js.map",
"velocity.ui.min.js"
],
"devDependencies": {
"@types/qunit": "^2.5.2",
"auto-changelog": "^1.8.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"markdown": "^0.5.0",
"octonode": "^0.9.3",
"qunit": "^2.6.1",
"qunit-assert-close": "^2.1.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-strip-banner": "^0.2.0",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-tslint": "^0.1.34",
"rollup-plugin-typescript2": "^0.16.1",
"rollup-plugin-uglify": "^4.0.0",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"velocity-animate": "file:./"
}
}