This repository was archived by the owner on Feb 8, 2024. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 "dev" : " nodemon -w lib -w examples -x \" npm run build && node examples/test.js\" " ,
88 "clean" : " rimraf ./dist ./docs ./.nyc_output ./coverage" ,
99 "build" : " babel -d ./dist ./lib" ,
10- "test" : " NODE_ENV=test nyc ava" ,
10+ "test" : " npm run test:lint && npm run test:code" ,
11+ "test:lint" : " eslint ./lib" ,
12+ "test:code" : " NODE_ENV=test nyc ava" ,
1113 "coverage" : " NODE_ENV=test nyc report --reporter=text-lcov" ,
1214 "report" : " nyc report --reporter=text-lcov | coveralls" ,
13- "lint" : " eslint ./lib" ,
1415 "docs" : " documentation build -f html -o docs" ,
1516 "deploy:docs" : " buildbranch gh-pages docs" ,
16- "postversion" : " npm run lint && npm test && npm run build && npm publish && npm run docs && git push --all origin && git push --tags origin && npm run deploy:docs"
17+ "preversion" : " npm test && npm run build" ,
18+ "postversion" : " npm publish && npm run docs && git push --all origin && git push --tags origin && npm run deploy:docs"
1719 },
1820 "bin" : {
1921 "createrest" : " ./bin/createrest.js" ,
You can’t perform that action at this time.
0 commit comments