-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 loc) · 1.64 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
{
"name": "unistyle",
"version": "0.4.0",
"description": "Write modular and scalable CSS using the next version of ECMAScript.",
"main": "src/index.js",
"bin": {
"unistyle": "bin/unistyle"
},
"scripts": {
"lint": "xo",
"precompile:fixtures": "rm -rf test/fixtures-es5",
"compile:examples": "babel --ignore 'examples/react/*/button.js' examples -d examples-es5",
"compile:fixtures": "babel test/fixtures -d test/fixtures-es5",
"pretest": "npm run -s lint && npm run -s compile:fixtures",
"test": "ava --verbose 'test/*-test.js'"
},
"keywords": [
"css",
"styles",
"stylesheet",
"ecmascript",
"es6",
"es2015",
"es7",
"es2016",
"universal javascript",
"isomorphic",
"no-cascade",
"scalable",
"large scale"
],
"author": "Joakim Carlstein <joakim@klei.se>",
"repository": "joakimbeng/unistyle",
"license": "MIT",
"devDependencies": {
"ava": "^0.11.0",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"classnameify": "^1.0.0",
"os-tmpdir": "^1.0.1",
"promise-all": "^1.0.0",
"xo": "^0.12.1"
},
"xo": {
"space": true,
"ignores": [
"test/fixtures/**",
"test/fixtures-es5/**",
"examples/**",
"examples-es5/**"
]
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"directories": {
"test": "test",
"example": "examples"
},
"dependencies": {
"kebab-case": "^1.0.0",
"meow": "^3.7.0",
"pify": "^2.2.0",
"pixelify": "^2.0.1",
"to-css": "^1.2.1",
"unistyle-flat": "^1.1.1"
}
}