-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
88 lines (88 loc) · 2.74 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "aphrodite",
"version": "2.4.0",
"description": "Framework-agnostic CSS-in-JS with support for server-side rendering, browser prefixing, and minimum CSS generation",
"keywords": [
"css",
"react",
"inline-styles"
],
"main": "lib/index.js",
"module": "es/index.js",
"typings": "typings/index.d.ts",
"scripts": {
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint --fix --cache . && flow check",
"lint:ts": "tslint --project tsconfig.json --fix",
"test": "npm run coverage",
"posttest": "npm run lint",
"coverage": "nyc --check-coverage --lines 100 --branches 100 npm run tests",
"coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"pretest": "npm run build:prefixes",
"tests": "cross-env BABEL_ENV=test mocha --require @babel/register tests",
"tests:watch": "cross-env BABEL_ENV=test mocha --watch --require @babel/register tests",
"prebuild": "rimraf dist/* lib/* es/*",
"build": "npm-run-all --parallel build:*",
"watch:build": "npm-run-all --parallel watch:build:*",
"build:prefixes": "node tools/generate_prefixer_data.js",
"build:main": "rollup -c",
"watch:build:main": "npm run build:main -- --watch",
"preversion": "npm test",
"version": "npm run build && git add dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Khan/aphrodite.git"
},
"author": "Jamie Wong",
"license": "MIT",
"bugs": {
"url": "https://github.com/Khan/aphrodite/issues"
},
"homepage": "https://github.com/Khan/aphrodite",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-airbnb": "^3.2.0",
"caniuse-api": "^3.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.1.6",
"cross-spawn": "^6.0.4",
"eslint": "^5.16.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-react": "^6.3.0",
"flow-bin": "^0.74.0",
"jsdom": "^11.11.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"rollup": "^1.2.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-uglify": "^6.0.2",
"tslint": "^5.10.0",
"typescript": "^3.2.0"
},
"dependencies": {
"asap": "^2.0.3",
"inline-style-prefixer": "^6.0.0",
"string-hash": "^1.1.3"
},
"tonicExampleFilename": "examples/runkit.js",
"nyc": {
"exclude": [
"**/node_modules/**",
"coverage",
"tests"
]
}
}