riot-test-utils
Version:
lightweight testing utility of Riot
49 lines (48 loc) • 1.15 kB
JSON
{
"name": "riot-test-utils",
"version": "1.2.2",
"description": "lightweight testing utility of Riot",
"main": "dist/index.js",
"browser": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist; npm run build:cjs; npm run build:umd",
"build:cjs": "rollup -c rollup.config.js",
"build:umd": "rollup -c rollup.config.umd.js",
"test": "jest",
"lint": "prettier \"**/*.ts\" -l",
"lint:fix": "prettier \"**/*.ts\" --write"
},
"keywords": [
"shallow rendering",
"test",
"riotjs",
"riot.js",
"testing",
"testing utils",
"assertion helpers",
"tdd",
"vdom"
],
"author": "Karak",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.5",
"riot-shallowize": "^0.1.4",
"simulate-event": "^1.4.0"
},
"peerDependencies": {
"riot": "^3.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/karak/riot-test-renderer"
},
"devDependencies": {
"jest": "^22.4.3",
"riot": "^3.9.1",
"riot-test-renderer-shared": "^0.2.0",
"rollup": "^0.58.0"
}
}