This repository has been archived by the owner on Nov 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.83 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
{
"name": "metal-css-transitions",
"description": "Metal component used to apply css transitions",
"version": "2.3.5",
"license": "BSD",
"repository": "https://github.com/metal/metal-css-transisions.git",
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"main": "lib/TransitionWrapper.js",
"jsnext:main": "src/TransitionWrapper.js",
"files": [
"lib",
"src",
"test"
],
"scripts": {
"build": "babel -d lib/ src/",
"build:benchmark": "browserify ./benchmark/index.js -o ./benchmark/build/index.js -t [ babelify --presets [ metal-jsx es2015 ] ]",
"format": "eslint . --ignore-pattern node_modules --ignore-pattern lib --ignore-pattern benchmark --fix",
"lint": "eslint . --ignore-pattern node_modules --ignore-pattern lib --ignore-pattern benchmark",
"precommit": "npm run format",
"prepublish": "npm run build",
"prepush": "npm test",
"test": "jest"
},
"author": "Bryce Osterhaus <[email protected]>",
"keywords": [
"metal"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"roots": [
"<rootDir>/src/"
],
"snapshotSerializers": [
"metal-jest-serializer"
],
"timers": "fake"
},
"babel": {
"presets": [
"metal-jsx",
"es2015"
]
},
"dependencies": {
"metal-anim": "^2.0.0",
"metal-dom": "^2.5.3",
"metal-jsx": "^2.5.9"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-jest": "^16.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-jest": "^16.0.0",
"babel-preset-metal-jsx": "0.0.3",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"eslint": "^3.13.1",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.9.0",
"husky": "^0.13.3",
"jest": "^20.0.4",
"metal-jest-serializer": "^1.0.1",
"prettier": "^1.1.0"
}
}