-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "react-classy",
"version": "0.4.10",
"description": "A composable, extensible, and simple solution for styling React components.",
"author": "InTurn <ops@inturn.co> (https://github.com/inturn)",
"license": "MIT",
"homepage": "http://inturn.github.io/classy/",
"main": "lib/index.js",
"engines": {
"node": "*",
"npm": ">=2.0.0"
},
"scripts": {
"build": "npm run -s build:src",
"test": "npm run -s build:components.min && npm run -s mocha -- --reporter nyan --require mocha.config test/*.spec.js",
"build:components.min": "npm run -s rimraf -- ./test/components.min.js && babel test/components.js | npm run -s minify -- -o ./test/components.min.js",
"build:src": "npm run -s rimraf -- lib && npm run -s babel -- src -d lib",
"lint": "npm run -s eslint -s -- src && cat winning.txt",
"coverage": "npm run -s istanbul -- cover node_modules/.bin/_mocha -- --reporter nyan --require mocha.config test/*.spec.js",
"minify": "npm run -s uglifyjs -- --compress --mangle --keep-fnames",
"babel": "node_modules/.bin/babel",
"eslint": "node_modules/.bin/eslint",
"istanbul": "node_modules/.bin/istanbul",
"mocha": "node_modules/.bin/mocha",
"rimraf": "node_modules/.bin/rimraf",
"uglifyjs": "node_modules/.bin/uglifyjs"
},
"precommit.silent": true,
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/inturn/classy.git"
},
"keywords": [
"React",
"CSS",
"styling",
"ES6",
"ES7",
"decorators",
"classy"
],
"bugs": {
"url": "https://github.com/inturn/classy/issues"
},
"dependencies": {
"classnames": "2.1.3"
},
"devDependencies": {
"babel-cli": "6.9.0",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-plugin-transform-class-properties": "6.9.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.9.2",
"chai": "3.2.0",
"eslint": "1.10.3",
"istanbul": "0.3.18",
"jsdom": "6.1.0",
"mocha": "2.2.5",
"pre-commit": "1.1.1",
"react": "15.1.0",
"react-addons-test-utils": "15.1.0",
"react-dom": "15.1.0",
"rimraf": "2.4.2",
"uglifyjs": "2.4.10"
}
}