This repository has been archived by the owner on Jun 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.24 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
{
"name": "animate-value",
"version": "1.1.0",
"description": "🏃 animates a numeric value",
"main": "cjs/index.js",
"module": "es/index.js",
"browser": "dist/animateValue.min.js",
"jsxnext:main": "es/index.js",
"files": [
"dist",
"cjs",
"es",
"src"
],
"engines": {
"node": ">=4.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint:build:test",
"pre-push": "npm run lint:build:test"
}
},
"scripts": {
"prepublish": "npm run build",
"release": "release-it",
"lint": "npm run lint:eslint && npm run lint:flow",
"lint:eslint": "eslint src/*.js",
"lint:flow": "flow --color always",
"lint:build": "npm run lint && npm run build:cjs -s",
"lint:build:test": "npm run lint:build && npm run test:coverage",
"test": "clear && jest",
"test:watch": "clear && jest --watch",
"test:coverage": "jest --coverage ",
"build": "clear && npm run lint:build:test && npm run build:es && npm run build:umd",
"build:watch": "clear && cross-env BABEL_ENV=cjs babel src --watch --out-dir cjs",
"build:es": "rimraf es && cross-env BABEL_ENV=es babel src --out-dir es",
"build:cjs": "rimraf cjs && cross-env BABEL_ENV=cjs babel src --out-dir cjs",
"build:umd": "rimraf dist && cross-env BABEL_ENV=es rollup -c & cross-env BABEL_ENV=es NODE_ENV=production rollup -c"
},
"keywords": [],
"author": "Geoffrey Dhuyvetters ([email protected])",
"license": "MIT",
"repository": "duivvv/animate-value",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.16.0",
"cross-env": "^3.1.3",
"eslint": "^3.7.1",
"eslint-config-devine": "^1.5.0",
"eslint-plugin-babel": "^3.3.0",
"eventemitter2": "^2.2.1",
"flow-bin": "^0.35.0",
"ghooks": "^1.3.2",
"jest": "^16.0.1",
"raf": "^3.3.0",
"release-it": "^2.5.1",
"rimraf": "^2.5.4",
"rollup": "^0.36.1",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-bundle-size": "^1.0.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1"
}
}