Skip to content

Commit 6441590

Browse files
committed
Initial commit
0 parents  commit 6441590

17 files changed

+4075
-0
lines changed

.babelrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"plugins": [ "transform-object-rest-spread" ],
3+
"presets": [ "es2015" ]
4+
}

.coveralls.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
service_name: travis-ci

.editorconfig

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build
2+
coverage
3+
node_modules

.npmignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
coverage
2+
src
3+
node_modules
4+
build/__tests__

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
cache: yarn
3+
node_js:
4+
- "6.9.2"
5+
- "7"
6+
after_script:
7+
- cat ./coverage/lcov.info | `yarn bin`/coveralls

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# css-spring
2+
[![npm version](https://badge.fury.io/js/css-spring.svg)](https://badge.fury.io/js/css-spring) [![Build Status](https://travis-ci.org/codepunkt/css-spring.svg?branch=master)](https://travis-ci.org/codepunkt/css-spring) [![Coverage Status](https://coveralls.io/repos/github/codepunkt/css-spring/badge.svg?branch=master)](https://coveralls.io/github/codepunkt/css-spring?branch=master)
3+
4+
Generates values for physics based css-keyframe animations

package.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name": "css-spring",
3+
"version": "2.0.0",
4+
"description": "Generates values for physics based css-keyframe animations",
5+
"main": "build/index.js",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/codepunkt/ss-spring.git"
9+
},
10+
"author": "Christoph Werner <[email protected]>",
11+
"license": "MIT",
12+
"keywords": [
13+
"react",
14+
"css",
15+
"animation",
16+
"physics",
17+
"spring"
18+
],
19+
"scripts": {
20+
"build": "babel src --out-dir build",
21+
"test": "jest --coverage"
22+
},
23+
"dependencies": {},
24+
"devDependencies": {
25+
"babel-cli": "^6.18.0",
26+
"babel-plugin-transform-object-rest-spread": "^6.22.0",
27+
"babel-preset-es2015": "^6.18.0",
28+
"coveralls": "^2.11.15",
29+
"jest": "^18.1.0"
30+
},
31+
"jest": {
32+
"testPathDirs": [
33+
"src"
34+
]
35+
}
36+
}

0 commit comments

Comments
 (0)