-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.01 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
{
"name": "fiber",
"version": "0.2.0",
"description": "The framework specialized in animated components.",
"main": "build/Fiber.js",
"jsnext:main": "src/Fiber.js",
"license": "MIT",
"author": [
{
"name": "Matuzalém Teles",
"email": "[email protected]"
},
{
"name": "Clovis Neto",
"email": "[email protected]"
}
],
"scripts": {
"build": "npm-run-all --silent rollup:umd -p minify:umd -s size",
"clean": "rimraf build && mkdirp build",
"rollup:umd": "rollup -c",
"minify:umd": "uglifyjs build/fiber.js -cm -o build/fiber.js",
"test": "jest --coverage --verbose && bundlesize",
"test:watch": "yarn run test --watch",
"coverage": "cat ./coverage/lcov.info | coveralls",
"size": "echo \"Gzipped Size: $(gzip-size $npm_package_main)\"",
"prepublish": "yarn run build"
},
"repository": {
"type": "git",
"url": "https://github.com/liferay-labs-br/fiber.git"
},
"keywords": [
"fiber",
"vdom",
"jsx",
"hyperscript",
"components",
"dom",
"motion",
"animation"
],
"homepage": "https://github.com/liferay-labs-br/fiber",
"bugs": {
"url": "https://github.com/liferay-labs-br/fiber/issues"
},
"files": [
"src",
"build"
],
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babelrc-rollup": "^3.0.0",
"bundlesize": "^0.15.3",
"coveralls": "^3.0.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"gzip-size-cli": "^2.1.0",
"jest": "^21.2.1",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"uglify-js": "^3.1.2"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"bundlesize": [
{
"path": "./build/fiber.js",
"maxSize": "2 kB"
}
]
}