|
1 | 1 | {
|
2 |
| - "name": "react-web-animation", |
3 |
| - "version": "0.0.0-development", |
4 |
| - "main": "./lib/index.js", |
5 |
| - "repository": { |
6 |
| - "type": "git", |
7 |
| - "url": "https://github.com/RinconStrategies/react-web-animation.git" |
8 |
| - }, |
9 |
| - "keywords": [ |
10 |
| - "react", |
11 |
| - "animation", |
12 |
| - "web-animations-api" |
| 2 | + "name": "react-web-animation", |
| 3 | + "version": "0.0.0-development", |
| 4 | + "main": "./lib/index.js", |
| 5 | + "repository": { |
| 6 | + "type": "git", |
| 7 | + "url": "https://github.com/RinconStrategies/react-web-animation.git" |
| 8 | + }, |
| 9 | + "keywords": [ |
| 10 | + "react", |
| 11 | + "animation", |
| 12 | + "web-animations-api" |
| 13 | + ], |
| 14 | + "files": [ |
| 15 | + "dist", |
| 16 | + "lib", |
| 17 | + "src" |
| 18 | + ], |
| 19 | + "author": "Charles King <charlie@rinconstrategies.io> (http://github.com/bringking)", |
| 20 | + "license": "MIT", |
| 21 | + "bugs": { |
| 22 | + "url": "https://github.com/RinconStrategies/react-web-animation/issues" |
| 23 | + }, |
| 24 | + "homepage": "https://github.com/RinconStrategies/react-web-animation", |
| 25 | + "scripts": { |
| 26 | + "lint": "eslint src test", |
| 27 | + "test": "NODE_ENV=test jest --coverage --no-cache", |
| 28 | + "build:lib": "babel src --out-dir lib", |
| 29 | + "build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-web-animation.js", |
| 30 | + "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-web-animation.min.js", |
| 31 | + "build:all": "yarn build:lib && yarn build:umd && yarn build:umd:min", |
| 32 | + "semantic-release": "semantic-release pre && yarn build:all && npm publish && semantic-release post" |
| 33 | + }, |
| 34 | + "devDependencies": { |
| 35 | + "babel-cli": "^6.8.0", |
| 36 | + "babel-core": "^6.8.0", |
| 37 | + "babel-eslint": "^7.2.0", |
| 38 | + "babel-jest": "^18.0.0", |
| 39 | + "babel-loader": "^6.2.3", |
| 40 | + "babel-plugin-lodash": "^3.2.11", |
| 41 | + "babel-plugin-transform-object-rest-spread": "^6.23.0", |
| 42 | + "babel-preset-es2015": "^6.5.0", |
| 43 | + "babel-preset-react": "^6.5.0", |
| 44 | + "chai": "*", |
| 45 | + "cross-env": "^3.2.4", |
| 46 | + "cz-customizable": "^4.0.0", |
| 47 | + "enzyme": "^2.0.0", |
| 48 | + "eslint": "3.18.0", |
| 49 | + "eslint-plugin-react": "^6.9.0", |
| 50 | + "jest": "^19.0.2", |
| 51 | + "jest-cli": "^18.0.0", |
| 52 | + "lodash-webpack-plugin": "^0.11.2", |
| 53 | + "react": ">=15.1.0", |
| 54 | + "react-addons-test-utils": ">=15.1.0", |
| 55 | + "react-dom": ">=15.1.0", |
| 56 | + "semantic-release": "^6.3.2", |
| 57 | + "source-map": "^0.5.4", |
| 58 | + "webpack": "^2.3.1" |
| 59 | + }, |
| 60 | + "jest": { |
| 61 | + "collectCoverageFrom": [ |
| 62 | + "src/**/!(*.test).js" |
13 | 63 | ],
|
14 |
| - "files": [ |
15 |
| - "dist", |
16 |
| - "lib", |
17 |
| - "src" |
| 64 | + "coveragePathIgnorePatterns": [ |
| 65 | + "<rootDir>/node_modules/", |
| 66 | + "dist/", |
| 67 | + "lib/" |
18 | 68 | ],
|
19 |
| - "author": "Charles King <charlie@rinconstrategies.io> (http://github.com/bringking)", |
20 |
| - "license": "MIT", |
21 |
| - "bugs": { |
22 |
| - "url": "https://github.com/RinconStrategies/react-web-animation/issues" |
23 |
| - }, |
24 |
| - "homepage": "https://github.com/RinconStrategies/react-web-animation", |
25 |
| - "scripts": { |
26 |
| - "lint": "eslint src test", |
27 |
| - "test": "NODE_ENV=test jest --coverage --no-cache", |
28 |
| - "build:lib": "babel src --out-dir lib", |
29 |
| - "build:umd": "cross-env NODE_ENV=development webpack src/index.js dist/react-web-animation.js", |
30 |
| - "build:umd:min": "cross-env NODE_ENV=production webpack src/index.js dist/react-web-animation.min.js", |
31 |
| - "build:all": "yarn build:lib && yarn build:umd && yarn build:umd:min", |
32 |
| - "semantic-release": "semantic-release pre && yarn build:all && npm publish && semantic-release post" |
33 |
| - }, |
34 |
| - "devDependencies": { |
35 |
| - "babel-cli": "^6.8.0", |
36 |
| - "babel-core": "^6.8.0", |
37 |
| - "babel-eslint": "^7.2.0", |
38 |
| - "babel-loader": "^6.2.3", |
39 |
| - "babel-plugin-lodash": "^3.2.11", |
40 |
| - "babel-preset-es2015": "^6.5.0", |
41 |
| - "babel-preset-react": "^6.5.0", |
42 |
| - "babel-plugin-transform-object-rest-spread": "^6.23.0", |
43 |
| - "chai": "*", |
44 |
| - "cross-env": "^3.2.4", |
45 |
| - "cz-customizable": "^4.0.0", |
46 |
| - "eslint-plugin-react": "^6.9.0", |
47 |
| - "babel-jest": "^18.0.0", |
48 |
| - "jest": "^19.0.2", |
49 |
| - "jest-cli": "^18.0.0", |
50 |
| - "enzyme": "^2.0.0", |
51 |
| - "eslint": "3.18.0", |
52 |
| - "lodash-webpack-plugin": "^0.11.2", |
53 |
| - "react": ">=15.1.0", |
54 |
| - "react-addons-test-utils": ">=15.1.0", |
55 |
| - "react-dom": ">=15.1.0", |
56 |
| - "semantic-release": "^6.3.2", |
57 |
| - "source-map": "^0.5.4", |
58 |
| - "webpack": "^2.3.1" |
59 |
| - }, |
60 |
| - "jest": { |
61 |
| - "collectCoverageFrom": [ |
62 |
| - "src/**/!(*.test).js" |
63 |
| - ], |
64 |
| - "coveragePathIgnorePatterns": [ |
65 |
| - "<rootDir>/node_modules/", |
66 |
| - "dist/", |
67 |
| - "lib/" |
68 |
| - ], |
69 |
| - "moduleFileExtensions": [ |
70 |
| - "js", |
71 |
| - "jsx", |
72 |
| - "json" |
73 |
| - ], |
74 |
| - "transform": { |
75 |
| - "^.+\\.js$": "<rootDir>/node_modules/babel-jest" |
76 |
| - } |
77 |
| - }, |
78 |
| - "release": { |
79 |
| - "analyzeCommits": { |
80 |
| - "path": "./release/analyze-commits.js", |
81 |
| - "minorTypes": [ |
82 |
| - "fix", |
83 |
| - "feat" |
84 |
| - ], |
85 |
| - "patchTypes": [ |
86 |
| - "refactor", |
87 |
| - "docs" |
88 |
| - ] |
89 |
| - } |
90 |
| - }, |
91 |
| - "config": { |
92 |
| - "commitizen": { |
93 |
| - "path": "node_modules/cz-customizable" |
94 |
| - }, |
95 |
| - "cz-customizable": { |
96 |
| - "config": ".cz-config.js" |
97 |
| - } |
98 |
| - }, |
99 |
| - "peerDependencies": { |
100 |
| - "react": ">=0.14.0 <16.0.0", |
101 |
| - "react-dom": ">=0.14.0 <16.0.0" |
| 69 | + "moduleFileExtensions": [ |
| 70 | + "js", |
| 71 | + "jsx", |
| 72 | + "json" |
| 73 | + ], |
| 74 | + "transform": { |
| 75 | + "^.+\\.js$": "<rootDir>/node_modules/babel-jest" |
| 76 | + } |
| 77 | + }, |
| 78 | + "release": { |
| 79 | + "analyzeCommits": { |
| 80 | + "path": "./release/analyze-commits.js", |
| 81 | + "minorTypes": [ |
| 82 | + "fix", |
| 83 | + "feat" |
| 84 | + ], |
| 85 | + "patchTypes": [ |
| 86 | + "refactor", |
| 87 | + "docs" |
| 88 | + ] |
| 89 | + } |
| 90 | + }, |
| 91 | + "config": { |
| 92 | + "commitizen": { |
| 93 | + "path": "node_modules/cz-customizable" |
102 | 94 | },
|
103 |
| - "dependencies": { |
104 |
| - "lodash": "^4.17.4", |
105 |
| - "shortid": "^2.2.4" |
| 95 | + "cz-customizable": { |
| 96 | + "config": ".cz-config.js" |
106 | 97 | }
|
| 98 | + }, |
| 99 | + "peerDependencies": { |
| 100 | + "react": ">=0.14.0 <16.0.0", |
| 101 | + "react-dom": ">=0.14.0 <16.0.0", |
| 102 | + "prop-types": "^15.5.6" |
| 103 | + }, |
| 104 | + "dependencies": { |
| 105 | + "lodash": "^4.17.4", |
| 106 | + "shortid": "^2.2.4" |
| 107 | + } |
107 | 108 | }
|
0 commit comments