-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.42 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
{
"name": "nextframe",
"version": "1.7.2",
"description": "Promise for requestAnimationFrame, plus delayed and sequenced frames",
"main": "dist/nextframe.common.js",
"module": "dist/nextframe.es.js",
"browser": "dist/nextframe.js",
"jsnext:main": "dist/nextframe.es.js",
"scripts": {
"bump": "standard-version",
"docs": "esdoc -c esdoc.json",
"lint": "eslint --fix --format table ./src",
"rollup": "rollup -c",
"clear": "rimraf dist",
"build": "cross-env NODE_ENV=production npm-run-all clear rollup minify:* docs size",
"publish": "gh-pages -d ./docs",
"watch": "rollup -cwm",
"minify:cjs": "uglifyjs $npm_package_main -cm toplevel -o $npm_package_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_main}.map",
"--minify:umd": "uglifyjs dist/nextframe.common.js -cm -o dist/nextframe.common.js -p relative --in-source-map dist/nextframe.common.js.map --source-map dist/nextframe.common.js.map",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace dist/nextframe.js | gzip-size)\"",
"release": "yarn run build -s && yarn run bump && git push --follow-tags origin master && npm publish",
"test": "yarn build && ava -v",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"files": [
"dist",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/soenkekluth/nextframe.git"
},
"keywords": [
"requestAnimationFrame",
"Promise",
"resolve",
"delay",
"frame",
"next frame",
"sequence",
"performance",
"jank",
"jankfree",
"jank free",
"animation"
],
"author": "Sönke Kluth <soenke.kluth@gmail.com> (http://soenkekluth.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/soenkekluth/nextframe/issues"
},
"homepage": "https://github.com/soenkekluth/nextframe",
"dependencies": {
"esdoc": "^1.0.3",
"esdoc-standard-plugin": "^1.0.0",
"raf": "^3.4.0",
"setimmediate": "^1.0.5",
"snyk": "^*"
},
"peerDependencies": {
"raf": "3.4.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-proto-to-assign": "6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.0.5",
"documentation": "^5.3.2",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0",
"gh-pages": "^1.0.0",
"gzip-size-cli": "^2.1.0",
"livereload": "^0.6.2",
"npm-run-all": "^4.1.1",
"performance-now": "^2.1.0",
"pretty-bytes-cli": "^2.0.0",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-buble": "^0.16.0",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-eslint": "^4.0.0",
"rollup-plugin-memory": "^2.0.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"rollup-watch": "^4.3.1",
"serve": "^6.2.0",
"standard-version": "^4.2.0",
"strip-json-comments-cli": "^1.0.1"
},
"snyk": true
}