-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 962 Bytes
/
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
{
"name": "animation",
"version": "1.0.0",
"description": "A lightweight JavaScript animation library.",
"main": "index.js",
"scripts": {
"precommit": "node_modules/.bin/eslint index.js",
"dev": "./node_modules/.bin/babel --out-file dist/animation-${npm_package_version}.js --source-maps inline --watch index.js",
"prebuild": "rm -rf dist/*.js",
"build": "./node_modules/.bin/babel --out-file dist/animation-${npm_package_version}.js index.js",
"postbuild": "./node_modules/.bin/babel --out-file dist/animation-${npm_package_version}.min.js --minified index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "holyzfy <[email protected]>",
"license": "ISC",
"dependencies": {
"babel-cli": "~6.26.0",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-es2015-modules-umd": "~6.24.1",
"babel-preset-env": "~1.6.1",
"husky": "~0.14.3"
}
}