-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 952 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 952 Bytes
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
{
"name": "color-interpolator",
"version": "1.0.2",
"description": "Color interpolator to be used with react-motion",
"main": "dist/color-interpolator-es5.js",
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"test": "mocha --compilers js:babel-core/register 'test/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"build": "babel src/color-interpolator.js -o dist/color-interpolator-es5.js"
},
"keywords": [
"color",
"interpolate",
"react-motion"
],
"author": "Gerard Moreno-Torre Bertran",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^2.4.0",
"mocha": "^2.3.4",
"react": "^15.1.0"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/germtb/color-interpolator"
}
}