-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
79 lines (79 loc) · 2.1 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
{
"name": "css-functions",
"version": "1.0.5",
"description": "JavaScript functions to build CSS functions",
"main": "lib/index.js",
"files": [
"LICENSE",
"README.md",
"/lib",
"/dist"
],
"scripts": {
"babel": "babel -d lib modules",
"lint": "eslint modules",
"precommit": "npm run lint && npm test",
"prepare": "npm run precommit && npm run babel",
"release": "npm run prepare && npm publish",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts test/_setup/mocha.opts",
"test": "mocha --opts test/_setup/mocha.opts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cssinjs/css-functions.git"
},
"keywords": [
"css",
"functions",
"jss",
"css",
"in",
"js",
"jsstyles",
"cssinjs"
],
"author": [
{
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
{
"name": "Robin Frischmann",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/css-functions/issues"
},
"homepage": "https://github.com/cssinjs/css-functions",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^5.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.3.1",
"cross-env": "^1.0.8",
"esformatter": "^0.9.0",
"esformatter-braces": "^1.2.1",
"esformatter-collapse-objects": "^0.5.1",
"esformatter-dot-notation": "^1.3.1",
"esformatter-jsx": "^4.1.2",
"esformatter-literal-notation": "^1.0.1",
"esformatter-parseint": "^1.0.3",
"esformatter-quote-props": "^1.0.2",
"esformatter-quotes": "^1.0.3",
"esformatter-remove-trailing-commas": "^1.0.1",
"esformatter-spaced-lined-comment": "^2.0.1",
"esformatter-var-each": "^2.1.0",
"eslint": "^2.10.2",
"eslint-config-rackt": "^1.1.1",
"estraverse-fb": "^1.3.1",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5"
}
}