-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
123 lines (123 loc) · 3.04 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "between.js",
"version": "0.1.2-fix.1",
"description": "Lightweight ES6 JavaScript tweening engine",
"main": "./build/between.js",
"scripts": {
"test": "xo ./src/**/*.js && ava test/*.spec.js --no-cache",
"coverage": "nyc npm test && codecov",
"build": "cross-env NODE_ENV=production rollup -c && gulp scss:build",
"start": "cross-env NODE_ENV=development gulp scss:watch & rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sasha240100/between.js.git"
},
"keywords": [
"tween",
"tweening",
"between",
"interpolate",
"transition"
],
"author": "Alexander Buzin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sasha240100/between.js/issues"
},
"homepage": "https://github.com/sasha240100/between.js#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.46",
"@babel/core": "^7.0.0-beta.46",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.46",
"@babel/register": "^7.0.0-beta.46",
"ava": "^1.0.0-beta.4",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"codecov": "^3.0.2",
"cross-env": "^5.1.5",
"eslint-config-alexander_buzin": "^1.0.2",
"gulp": "^3.9.1",
"gulp-sass": "^4.0.1",
"node-sass": "^4.9.0",
"nyc": "^11.8.0",
"once": "^1.4.0",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"rollup-watch": "^4.3.1",
"xo": "^0.21.0"
},
"dependencies": {
"color": "^3.0.0",
"color-string": "^1.5.2",
"easing-functions": "^1.0.1",
"lerp": "^1.0.3",
"minivents": "^2.2.0",
"raf": "^3.4.0",
"rollup-plugin-alias": "^1.4.0"
},
"ava": {
"require": [
"@babel/register"
]
},
"xo": {
"space": 2,
"esnext": true,
"parser": "babel-eslint",
"envs": [
"node",
"browser",
"es6"
],
"syntax_map": {
"JavaScript (Babel)": "javascript"
},
"rules": {
"operator-linebreak": [
2,
"before"
],
"curly": [
2,
"multi-or-nest"
],
"one-var": 0,
"no-else-return": 1,
"capitalized-comments": 0,
"no-undef": 0,
"no-new": 0,
"camelcase": 0,
"linebreak-style": 0,
"one-var-declaration-per-line": 0,
"new-cap": [
1,
{
"newIsCap": true,
"capIsNew": true,
"properties": false
}
],
"babel/arrow-parens": 0,
"xo/filename-case": 0,
"no-warning-comments": 0,
"unicorn/filename-case": 0,
"unicorn/no-abusive-eslint-disable": 0,
"import/no-unassigned-import": 0,
"import/prefer-default-export": 0,
"import/extensions": [
2,
"never",
{
"json": "always"
}
]
}
}
}