-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
77 lines (77 loc) · 2.84 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
{
"name": "react-with-styles-interface-aphrodite",
"version": "6.0.1",
"description": "react-with-styles interface for Aphrodite",
"main": "lib/aphroditeInterface.js",
"directories": {
"test": "test"
},
"scripts": {
"prebuild": "npm run clean",
"build": "babel src -d lib",
"check-changelog": "expr $(git status --porcelain 2>/dev/null| grep \"^\\s*M.*CHANGELOG.md\" | wc -l) >/dev/null || (echo 'Please edit CHANGELOG.md' && exit 1)",
"check-only-changelog-changed": "(expr $(git status --porcelain 2>/dev/null| grep -v \"CHANGELOG.md\" | wc -l) >/dev/null && echo 'Only CHANGELOG.md may have uncommitted changes' && exit 1) || exit 0",
"clean": "rimraf lib",
"lint": "eslint .",
"mocha": "mocha",
"postversion": "git commit package.json CHANGELOG.md -m \"Version $npm_package_version\" && npm run tag && git push && git push --tags && npm publish",
"prepublish": "in-publish && safe-publish-latest && npm run build || not-in-publish",
"pretest": "npm run --silent lint",
"preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed",
"tag": "git tag v$npm_package_version",
"test": "npm run tests-only",
"tests-only": "npm run --silent mocha test",
"version:major": "npm --no-git-tag-version version major",
"version:minor": "npm --no-git-tag-version version minor",
"version:patch": "npm --no-git-tag-version version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airbnb/react-with-styles-interface-aphrodite.git"
},
"keywords": [
"react-with-styles",
"aphrodite"
],
"author": "Joe Lencioni <joe.lencioni@airbnb.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/airbnb/react-with-styles-interface-aphrodite/issues"
},
"homepage": "https://github.com/airbnb/react-with-styles-interface-aphrodite#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/register": "^7.5.5",
"airbnb-js-shims": "^2.2.0",
"aphrodite": "^2.3.1",
"babel-plugin-transform-replace-object-assign": "^2.0.0",
"babel-preset-airbnb": "^4.0.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"in-publish": "^2.0.0",
"mocha": "^5.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"safe-publish-latest": "^1.1.2",
"sinon": "^6.3.5",
"sinon-sandbox": "^2.0.5"
},
"peerDependencies": {
"aphrodite": "^2.1.0",
"react-with-styles": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"array.prototype.flat": "^1.2.1",
"has": "^1.0.3",
"object.assign": "^4.1.0",
"object.entries": "^1.1.0",
"rtl-css-js": "^1.13.1"
}
}