UNPKG

2.8 kBJSONView Raw
1{
2 "name": "aphrodite",
3 "version": "2.4.0",
4 "description": "Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation",
5 "keywords": [
6 "css",
7 "react",
8 "inline-styles"
9 ],
10 "main": "lib/index.js",
11 "module": "es/index.js",
12 "typings": "typings/index.d.ts",
13 "scripts": {
14 "lint": "npm-run-all --parallel lint:*",
15 "lint:js": "eslint --fix --cache . && flow check",
16 "lint:ts": "tslint --project tsconfig.json --fix",
17 "test": "npm run coverage",
18 "posttest": "npm run lint",
19 "coverage": "nyc --check-coverage --lines 100 --branches 100 npm run tests",
20 "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
21 "pretest": "npm run build:prefixes",
22 "tests": "cross-env BABEL_ENV=test mocha --require @babel/register tests",
23 "tests:watch": "cross-env BABEL_ENV=test mocha --watch --require @babel/register tests",
24 "prebuild": "rimraf dist/* lib/* es/*",
25 "build": "npm-run-all --parallel build:*",
26 "watch:build": "npm-run-all --parallel watch:build:*",
27 "build:prefixes": "node tools/generate_prefixer_data.js",
28 "build:main": "rollup -c",
29 "watch:build:main": "npm run build:main -- --watch",
30 "preversion": "npm test",
31 "version": "npm run build && git add dist"
32 },
33 "repository": {
34 "type": "git",
35 "url": "https://github.com/Khan/aphrodite.git"
36 },
37 "author": "Jamie Wong",
38 "license": "MIT",
39 "bugs": {
40 "url": "https://github.com/Khan/aphrodite/issues"
41 },
42 "homepage": "https://github.com/Khan/aphrodite",
43 "devDependencies": {
44 "@babel/cli": "^7.0.0",
45 "@babel/core": "^7.0.0",
46 "@babel/preset-flow": "^7.0.0",
47 "@babel/register": "^7.0.0",
48 "babel-eslint": "^10.0.1",
49 "babel-plugin-istanbul": "^4.1.6",
50 "babel-preset-airbnb": "^3.2.0",
51 "caniuse-api": "^3.0.0",
52 "chai": "^4.1.2",
53 "coveralls": "^3.0.2",
54 "cross-env": "^5.1.6",
55 "cross-spawn": "^6.0.4",
56 "eslint": "^5.16.0",
57 "eslint-config-standard-react": "^4.2.0",
58 "eslint-plugin-react": "^6.3.0",
59 "flow-bin": "^0.74.0",
60 "jsdom": "^11.11.0",
61 "mkdirp": "^0.5.1",
62 "mocha": "^5.2.0",
63 "npm-run-all": "^4.1.3",
64 "nyc": "^13.1.0",
65 "rimraf": "^2.6.2",
66 "rollup": "^1.2.2",
67 "rollup-plugin-babel": "^4.3.2",
68 "rollup-plugin-commonjs": "^9.2.0",
69 "rollup-plugin-node-resolve": "^4.0.0",
70 "rollup-plugin-replace": "^2.1.0",
71 "rollup-plugin-uglify": "^6.0.2",
72 "tslint": "^5.10.0",
73 "typescript": "^2.9.1"
74 },
75 "dependencies": {
76 "asap": "^2.0.3",
77 "inline-style-prefixer": "^5.1.0",
78 "string-hash": "^1.1.3"
79 },
80 "tonicExampleFilename": "examples/runkit.js",
81 "nyc": {
82 "exclude": [
83 "**/node_modules/**",
84 "coverage",
85 "tests"
86 ]
87 }
88}