1 | {
|
2 | "name": "react-with-styles-interface-aphrodite",
|
3 | "version": "1.0.0",
|
4 | "description": "react-with-styles interface for Aphrodite",
|
5 | "main": "lib/aphroditeInterface.js",
|
6 | "directories": {
|
7 | "test": "test"
|
8 | },
|
9 | "scripts": {
|
10 | "build": "npm run clean && babel src/ -d lib/",
|
11 | "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)",
|
12 | "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",
|
13 | "clean": "rimraf lib",
|
14 | "lint": "eslint .",
|
15 | "mocha": "mocha --compilers js:babel-register,jsx:babel-register --require airbnb-js-shims --recursive test",
|
16 | "postversion": "git commit package.json CHANGELOG.md -m \"Version $npm_package_version\" && npm run tag && git push && git push --tags && npm publish",
|
17 | "prepublish": "in-publish && npm run build || not-in-publish",
|
18 | "pretest": "npm run --silent lint",
|
19 | "preversion": "npm run test && npm run check-changelog && npm run check-only-changelog-changed",
|
20 | "tag": "git tag v$npm_package_version",
|
21 | "test": "npm run tests-only",
|
22 | "tests-only": "npm run mocha --silent test",
|
23 | "version:major": "npm --no-git-tag-version version major",
|
24 | "version:minor": "npm --no-git-tag-version version minor",
|
25 | "version:patch": "npm --no-git-tag-version version patch"
|
26 | },
|
27 | "repository": {
|
28 | "type": "git",
|
29 | "url": "git+https://github.com/airbnb/react-with-styles-interface-aphrodite.git"
|
30 | },
|
31 | "keywords": [
|
32 | "react-with-styles",
|
33 | "aphrodite"
|
34 | ],
|
35 | "author": "Joe Lencioni <joe.lencioni@airbnb.com>",
|
36 | "license": "MIT",
|
37 | "bugs": {
|
38 | "url": "https://github.com/airbnb/react-with-styles-interface-aphrodite/issues"
|
39 | },
|
40 | "homepage": "https://github.com/airbnb/react-with-styles-interface-aphrodite#readme",
|
41 | "devDependencies": {
|
42 | "airbnb-js-shims": "^1.0.1",
|
43 | "aphrodite": "^0.5.0",
|
44 | "babel-cli": "^6.11.4",
|
45 | "babel-preset-airbnb": "^2.0.0",
|
46 | "babel-register": "^6.11.6",
|
47 | "chai": "^3.5.0",
|
48 | "eslint": "^3.3.1",
|
49 | "eslint-config-airbnb-base": "^5.0.3",
|
50 | "eslint-plugin-import": "^1.14.0",
|
51 | "in-publish": "^2.0.0",
|
52 | "mocha": "^3.0.2",
|
53 | "rimraf": "^2.5.4",
|
54 | "safe-publish-latest": "^1.0.1"
|
55 | },
|
56 | "peerDependencies": {
|
57 | "aphrodite": ">=0.5.0"
|
58 | },
|
59 | "dependencies": {
|
60 | "array-flatten": "^2.1.0",
|
61 | "has": "^1.0.1"
|
62 | }
|
63 | }
|