-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
48 lines (48 loc) · 1.65 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
{
"name": "easing-utils",
"version": "1.0.0",
"description": "A collection of configurable easing functions for Javascript that takes in a value from 0 to 1 and returns the eased value",
"main": "lib/easing.js",
"scripts": {
"compile": "babel --out-file lib/easing.js src/easing.js",
"test": "echo 'Error: no test specified' && exit 1",
"prepublish": "npm run compile",
"build-cdn": "webpack --config webpack.config.cdn.js",
"gh-pages": "git checkout gh-pages && git reset --hard master && git rm .gitignore && webpack --config webpack.config.gh-pages.js && git add gh-pages/js/ && git commit -am 'Github pages' && git push -f origin gh-pages && git checkout -f -"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewRayCode/easing-utils.git"
},
"keywords": [
"javascript",
"easing",
"animation"
],
"author": "Andrew Ray",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndrewRayCode/easing-utils/issues"
},
"homepage": "https://github.com/AndrewRayCode/easing-utils",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-import": "^1.4.0",
"eslint-plugin-react": "^4.2.3",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"webpack": "^1.12.14",
"webpack-notifier": "^1.3.0"
}
}