-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "easing",
"version": "1.2.1",
"description": "Easing Functions Without the Framework Cruft",
"author": "David Wee <[email protected]> (http://rook2pawn.com)",
"contributors": [
"David Wee <[email protected]> (http://rook2pawn.com)",
"Joseph Kohlmann <[email protected]>"
],
"keywords": [
"easing",
"animation",
"tween"
],
"files": [
"dist",
"docs",
"lib",
"src",
"types/index.d.ts",
"browser-easing.js",
"index.html",
"README.md"
],
"scripts": {
"build": "npm run build:lib && npm run build:dist",
"build:lib": "babel ./src --source-maps --out-dir ./lib",
"build:dist": "webpack -p",
"clean": "rimraf lib browser-easing.js",
"prepublish": "npm run clean && npm run test && npm run build",
"test": "nyc tape test/*.js | tap-spec",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"homepage": "https://github.com/rook2pawn/node-easing",
"repository": {
"type": "git",
"url": "[email protected]:rook2pawn/node-easing.git"
},
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.55",
"@babel/core": "^7.0.0-beta.55",
"@babel/preset-env": "^7.0.0-beta.55",
"babel-loader": "^8.0.0-beta.4",
"coveralls": "^3.0.0",
"nyc": "^11.7.1",
"tap-spec": "^4.1.1",
"tape": "^4.9.0",
"through2": "^2.0.3",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
}
}