This repository has been archived by the owner on Jan 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.7 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
{
"name": "style-sheet",
"version": "4.0.4",
"description": "Fast CSS in JS library with support for static CSS extraction.",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/giuseppeg"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"unpkg": "lib/umd/index.prod.js",
"files": [
"lib",
"babel.js"
],
"scripts": {
"prepublish": "npm run clean && npm run build",
"clean": "rm -rf lib/**/*.dev.js && rm -rf lib/**/*.prod.js && rm -rf test/e2e/lib",
"prebuild": "npm run clean",
"build": "npm run build:dev && npm run build:prod",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build:prod": "rollup -c --environment NODE_ENV:production",
"ava": "ava",
"ava:e2e": "ava test/e2e/test.js",
"test:copy:lib": "npm run clean && rollup -c --environment NODE_ENV:test && mkdir -p test/e2e/lib && cp lib/umd/index.prod.js test/e2e/lib/_styleSheet.js && cp lib/umd/factory.prod.js test/e2e/lib/_styleSheetFactory.js",
"pretest": "npm run lint && npm run test:copy:lib",
"test": "run-p --race test:e2e:server ava",
"test:unit": "ava test/*.js",
"pretest:e2e": "npm run test:copy:lib",
"test:e2e": "run-p --race test:e2e:server ava:e2e",
"test:e2e:server": "serve ./test/e2e",
"test:babel": "ava test/babel/*.js",
"lint": "eslint src test",
"format": "prettier --single-quote --trailing-comma=es5 --no-semi --write all *.js {src,test}/*.js {src,test}/**/*.js"
},
"keywords": [
"css-in-js",
"css in js",
"stylesheet",
"css",
"react native styles",
"babel-plugin",
"atomic css"
],
"author": "Giuseppe Gurgone",
"license": "MIT",
"dependencies": {
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"babel-helper-evaluate-path": "^0.5.0",
"error-stack-parser": "^2.0.2",
"fnv1a": "^1.0.1",
"inline-style-prefixer": "^5.0.1",
"linaria": "^1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"ava": "^1.0.0",
"eslint": "^6.0.0",
"eslint-plugin-ava": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.14.3",
"puppeteer": "^1.8.0",
"react": "^16.10.1",
"rollup": "^1.11.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^5.0.0",
"serve": "^11.0.0"
},
"ava": {
"require": [
"./test/_register.js"
]
}
}