-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "transform-when",
"version": "1.2.0",
"description": "A library for handing animations combining page position and time",
"main": "dist/transform-when.js",
"esnext:main": "src/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "rollup -c",
"test": "npm run build && mocha-phantomjs /test/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samknows/transform-when.git"
},
"author": "Callum Macrae <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/samknows/transform-when/issues"
},
"homepage": "https://github.com/samknows/transform-when#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"mocha": "^3.2.0",
"mocha-phantomjs": "^4.1.0",
"rollup": "^0.40.0",
"rollup-plugin-babel": "^2.7.1",
"should": "^11.1.2"
},
"dependencies": {
"phantomjs": "^2.1.7"
}
}