-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.43 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
{
"name": "retween",
"version": "0.1.2",
"description": "A functional reimagining of the Shifty interpolation kernel",
"scripts": {
"lint": "eslint src test",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-register --recursive",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/retween.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/retween.min.js",
"build:umd-core": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/core.js dist/retween.core.js",
"build:umd-core:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/core.js dist/retween.core.min.js",
"prepublish": "npm run build:commonjs"
},
"repository": {
"type": "git",
"url": "https://github.com/bdowning/retween.git"
},
"authors": [
"Brian Downing <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"cross-env": "^1.0.7",
"eslint": "^2.8.0",
"expect": "^1.18.0",
"mocha": "^2.4.5",
"mocha-loader": "^0.7.1",
"webpack": "^1.13.0"
},
"dependencies": {}
}