|
8 | 8 | "dist/**/*"
|
9 | 9 | ],
|
10 | 10 | "scripts": {
|
11 |
| - "build:dist": "ethereumjs-config-build", |
12 |
| - "prepublishOnly": "npm run lint && npm run build:dist && npm run testBuildIntegrity", |
| 11 | + "build": "ethereumjs-config-build", |
| 12 | + "prepublishOnly": "npm run lint && npm run build && npm run test:buildIntegrity", |
13 | 13 | "coverage": "nyc npm run coverage:test && nyc report --reporter=lcov",
|
14 |
| - "coverage:test": "npm run build:dist && tape './tests/api/**/*.js' ./tests/tester.js --state --dist", |
| 14 | + "coverage:test": "npm run build && tape './tests/api/**/*.js' ./tests/tester.js --state --dist", |
15 | 15 | "docs:build": "typedoc lib",
|
16 | 16 | "test:vm": "node ./tests/tester --vm",
|
17 | 17 | "test:state": "npm run build:dist && node ./tests/tester --state --dist",
|
|
20 | 20 | "test:state:slow": "npm run test:state -- --runSkipped=slow",
|
21 | 21 | "test:buildIntegrity": "npm run test:state -- --test='stackOverflow'",
|
22 | 22 | "test:blockchain": "npm run build:dist && node --stack-size=1500 ./tests/tester --blockchain --dist",
|
23 |
| - "test:API": "npm run build:dist && tape './tests/api/**/*.js'", |
24 |
| - "test:API:browser": "npm run build:dist && karma start karma.conf.js", |
| 23 | + "test:API": "npm run build && node ./node_modules/tape/bin/tape './tests/api/**/*.js'", |
| 24 | + "test:API:browser": "npm run build && karma start karma.conf.js", |
25 | 25 | "test": "echo \"[INFO] Generic test cmd not used. See package.json for more specific test run cmds.\"",
|
26 | 26 | "tslint": "ethereumjs-config-tslint",
|
27 | 27 | "tslint:fix": "ethereumjs-config-tslint-fix",
|
|
0 commit comments