diff --git a/package.json b/package.json index 8ee018003..2cc95c163 100644 --- a/package.json +++ b/package.json @@ -28,9 +28,17 @@ "webpack": "^1.12.12" }, "scripts": { - "build": "node lib/main/build-dist.js && node lib/fp/build-dist.js", - "build-fp": "node lib/fp/build-modules.js", - "style": "jscs lodash.js lib/**/*.js", - "test": "npm run build && node test/test && node test/test-fp" + "build": "npm run build:main && npm run build:fp", + "build:fp": "node lib/fp/build-dist.js", + "build:fp-modules": "node lib/fp/build-modules.js", + "build:main": "node lib/main/build-dist.js", + "style": "npm run style:main && npm run style:fp && npm run style:perf && npm run style:test", + "style:fp": "jscs fp/*.js lib/**/*.js", + "style:main": "jscs lodash.js", + "style:perf": "jscs perf/*.js perf/**/*.js", + "style:test": "jscs test/*.js test/**/*.js", + "test": "npm run build && npm run test:main && npm run test:fp", + "test:fp": "node test/test-fp", + "test:main": "node test/test" } }