react-augmentation
Version:
DOM augmentation operators to simplify UI code and promote data-driven DOM hierarchy
60 lines (59 loc) • 1.42 kB
JSON
{
"name": "react-augmentation",
"version": "1.2.1",
"description": "DOM augmentation operators to simplify UI code and promote data-driven DOM hierarchy",
"main": "lib/index.js",
"module": "lib/index.js",
"files": [
"lib/*"
],
"keywords": [
"augment",
"augmentation",
"augmented",
"dialog",
"inlet",
"modal",
"outlet",
"persistence",
"pipe",
"react"
],
"scripts": {
"build": "babel ./src --ignore *.test.js --out-dir ./lib --source-maps",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib",
"prepare": "npm run build",
"test": "jest",
"test:watch": "npm run test -- --watch"
},
"author": "William Wong <compulim@hotmail.com> (http://compulim.info/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/compulim/react-augmentation.git"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"enzyme": "^3.1.0",
"jest": "^21.2.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}