forked from krasimir/cssx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.76 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
{
"description": "CSS in JavaScript",
"scripts": {
"test": "mocha --colors ./test/*.spec.js",
"test-watch": "mocha --colors -w ./test/*.spec.js --watch-extensions css",
"test-debug": "mocha debug ./test/*.spec.js",
"dev": "webpack --progress --colors --watch --mode=dev",
"make": "webpack --mode=dev && webpack --mode=build && npm run test",
"update-site": "git checkout gh-pages && git merge origin/master && git push origin gh-pages && git checkout master",
"release": "npm run make && node ./scripts/release.js && cd ./packages/cssx && npm publish && cd ../cssx-transpiler && npm publish && cd ../gulp-cssx && npm publish && cd ../cssx-loader && npm publish && cd ../cssx-cli && npm publish && cd ../browserify-cssx && npm publish && cd ../../ && git add . && git commit -m \"Version updated\" && git push origin master && npm run update-site"
},
"repository": {
"type": "git",
"url": "https://github.com/krasimir/cssx.git"
},
"keywords": [
"css",
"cssx",
"transpiler"
],
"author": {
"name": "Krasimir Tsonev",
"email": "info@krasimirtsonev.com",
"url": "http://krasimirtsonev.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/krasimir/cssx/issues"
},
"homepage": "https://github.com/krasimir/cssx",
"devDependencies": {
"babel-generator": "6.5.0",
"babel-types": "6.5.0",
"babylon-plugin-cssx": "0.4.1",
"chai": "3.4.1",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"exec": "0.2.1",
"glob": "6.0.3",
"gulp": "3.9.1",
"json-loader": "0.5.4",
"mocha": "2.3.4",
"rimraf": "2.5.2",
"setimmediate": "1.0.4",
"sinon": "1.17.2",
"sinon-chai": "2.8.0",
"stream-assert-gulp": "0.4.9",
"webpack": "1.12.9",
"yargs": "3.32.0"
}
}