-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
63 lines (63 loc) · 1.34 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
{
"name": "stilr",
"version": "2.0.0-1",
"description": "Encapsulated styling for your javascript components with all the power of javascript and CSS combined. Usefull with React",
"author": "Kodyl ApS",
"contributors": [
{
"name": "Chris Kjær Sørensen"
},
{
"name": "Daniel Juhl"
}
],
"repository": "kodyl/stilr",
"license": "MIT",
"main": "dist",
"scripts": {
"test": "make test",
"clean": "rm -rf ./dist",
"dist": "NODE_ENV=production babel lib --out-dir dist --copy-files",
"release": "np"
},
"keywords": [
"sleek",
"stil",
"still",
"stilet",
"style",
"simple",
"stilr",
"styling",
"css",
"react",
"inline",
"component",
"encapsulation",
"react-component"
],
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.0",
"css": "^2.2.0",
"eslint": "^3.10.2",
"mocha": "^3.1.2",
"mocha-clean": "^1.0.0",
"np": "^5.2.1",
"semver": "^5.3.0"
},
"prettier": {
"bracketSpacing": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none"
}
}