eco-state
Version:
Light Weight Asynchronous JavaScript Eco friendly State Management Library.
67 lines (66 loc) • 1.86 kB
JSON
{
"name": "eco-state",
"version": "0.0.3",
"description": "Light Weight Asynchronous JavaScript Eco friendly State Management Library.",
"main": "index.js",
"scripts": {
"build:dev": "NODE_ENV=development node scripts/webpack.script.js",
"build:prod": "NODE_ENV=production node scripts/webpack.script.js",
"build": "npm run build:prod",
"serve": "nodemon server.js",
"test:w": "jest --watchAll",
"test:c": "jest --coverage",
"test:wc": "jest --watchAll --coverage",
"test": "npm run test:c",
"postinstall": "npm run build && npm run build:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajsuvarna6/eco-state.git"
},
"keywords": [
"javascript",
"nodejs",
"statemanagement",
"reactjs"
],
"author": "Ajay",
"license": "MIT",
"bugs": {
"url": "https://github.com/ajsuvarna6/eco-state/issues"
},
"homepage": "https://github.com/ajsuvarna6/eco-state#readme",
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/runtime": "^7.10.2",
"@types/jest": "^25.2.3",
"babel-loader": "^8.1.0",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"terser-webpack-plugin": "^3.0.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"browserslist": "> 0.25%, not dead",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.test.js"
],
"coveragePathIgnorePatterns": [
"example",
"dist",
"node_modules",
"test-config",
"interfaces",
"jestGlobalMocks.ts",
".module.ts",
".mock.ts"
],
"coverageDirectory": "<rootDir>/coverage/",
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!@ionic-native|@ionic|@ngrx|angular2-ui-switch|angularfire2|jest-cli|react|)"
],
"verbose": false
}