-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
56 lines (56 loc) · 1.79 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
{
"name": "j2c",
"version": "0.11.3",
"description": "A tiny CSS in JS solution.",
"main": "dist/j2c.commonjs.js",
"module": "dist/j2c.es6.js",
"scripts": {
"all": "npm run build && npm run eslint && npm run nyan",
"preversion": "npm run -s all",
"prepublish": "(in-publish && git push --follow-tags) || not-in-publish",
"build": "npm run -s clean && node scripts/build.js",
"uglify": "uglifyjs dist/j2c.commonjs.js -c -m --comments > dist/j2c.commonjs.min.js && uglifyjs dist/j2c.amd.js -c -m --comments > dist/j2c.amd.min.js && uglifyjs dist/j2c.global.js -c -m --comments > dist/j2c.global.min.js",
"clean": "rm -f dist/*.js && rm -f dist/inline/*.js",
"eslint": "echo \"linting...\" && eslint --fix src/*.js test/test.js scripts/*.js",
"nyan": "mocha --ui qunit --reporter nyan",
"test": "mocha --ui qunit",
"cover": "mocha --ui qunit --require blanket --reporter mocha-lcov-reporter | coveralls || npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/j2css/j2c.git"
},
"keywords": [
"CSS",
"css-in-js"
],
"author": "Pierre-Yves Gérardy",
"license": "MIT",
"bugs": {
"url": "https://github.com/j2css/j2c/issues"
},
"config": {
"blanket": {
"pattern": "//j2c\\.commonjs/"
}
},
"homepage": "http://j2c.py.gy",
"devDependencies": {
"blanket": "^1.1.7",
"compose-regexp": "^0.1.8",
"coveralls": "^2.11.2",
"eslint": "^1.10.3",
"expect.js": "0.3.1",
"in-publish": "^2.0.0",
"jshint": "^2.8.0",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"perfectionist": "^2.1.2",
"postcss": "^5.0.14",
"postcss-minify-params": "^1.0.4",
"postcss-minify-selectors": "^2.0.2",
"rollup": "^0.24.0",
"surgicate": "0.0.3",
"uglify-js": "^2.6.0"
}
}