Skip to content

Commit 119c87e

Browse files
committed
Move Around Package.json
1 parent d42f23f commit 119c87e

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@
44
"description": "Bringing Classes to Inline Styles",
55
"author": "case <case@casesandberg.com>",
66
"main": "lib/index.js",
7+
"scripts": {
8+
"lib": "gulp js:dist",
9+
"test": "npm run unit-test",
10+
"unit-test": "mocha test/** --compilers js:babel-register",
11+
"tdd": "mocha test/** --compilers js:babel-register --watch",
12+
"docs": "webpack-dev-server --config webpack.dev.js --port 2570",
13+
"docs-dist": "webpack --config webpack.prod.js",
14+
"dev": "npm run docs",
15+
"prepublish": "npm run lib",
16+
"eslint": "node_modules/.bin/eslint src/**/*.js",
17+
"posttest": "npm run eslint"
18+
},
719
"repository": {
820
"type": "git",
921
"url": "https://github.com/casesandberg/reactcss"
@@ -12,6 +24,7 @@
1224
"react",
1325
"reactcss"
1426
],
27+
"license": "MIT",
1528
"dependencies": {
1629
"lodash": "^4.0.1"
1730
},
@@ -58,18 +71,5 @@
5871
"testdom": "^2.0.0",
5972
"webpack": "^1.8.11",
6073
"webpack-dev-server": "^1.8.2"
61-
},
62-
"scripts": {
63-
"lib": "gulp js:dist",
64-
"test": "npm run unit-test",
65-
"unit-test": "mocha test/** --compilers js:babel-register",
66-
"tdd": "mocha test/** --compilers js:babel-register --watch",
67-
"docs": "webpack-dev-server --config webpack.dev.js --port 2570",
68-
"docs-dist": "webpack --config webpack.prod.js",
69-
"dev": "npm run docs",
70-
"prepublish": "npm run lib",
71-
"eslint": "node_modules/.bin/eslint src/**/*.js",
72-
"posttest": "npm run eslint"
73-
},
74-
"license": "MIT"
74+
}
7575
}

0 commit comments

Comments
 (0)