-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.69 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.69 KB
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
{
"name": "flippy.js",
"version": "1.0.2",
"description": "FLIP animation helper; animate DOM changes with ease",
"main": "dist/flippy.bundle.js",
"keywords": [
"flip",
"animation"
],
"author": "birjolaxew",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/birjolaxew/flippy.js.git"
},
"bugs": {
"url": "https://github.com/birjolaxew/flippy.js/issues"
},
"homepage": "https://birjolaxew.github.io/flippy.js",
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.5.1",
"chai": "^4.0.2",
"eslint": "^3.19.0",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-notify-reporter": "^1.0.1",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"scripts": {
"test": "karma start --single-run",
"watchTest": "karma start",
"start": "npm run watchTest",
"build": "webpack -p",
"deploy": "mkdir pages || true && git fetch https://github.com/birjolaxew/flippy.js.git gh-pages || true && git --work-tree=./pages checkout FETCH_HEAD && rm -R pages/dist/ || true && cp -r dist/ pages/ && rm pages/deployed\\ at*",
"demo": "npm run build && git submodule add -b gh-pages $(git remote get-url origin) demo || true && cd demo && cp -r ../dist/* ./dist && bundle exec jekyll serve --no-watch && cd .. && rm -R demo && rm -R _site && rm .gitmodules && rm -Rf .git/modules/demo && git add .gitmodules demo"
}
}