UNPKG

crypto-pro-csp

Version:
110 lines (109 loc) 2.8 kB
{ "name": "crypto-pro-csp", "version": "1.0.0", "description": "CryptoProCsp", "main": "lib/cryptopro_csp.js", "scripts": { "prepare": "rm -rf ./dist/ && rm -rf ./lib/ && yarn run flow && npm run compile", "run:compile": "babel --plugins=add-module-exports --presets es2015,flow,stage-0 -d lib/ src/", "compile": "export NODE_ENV=production && export BABEL_ENV=production && npm run run:compile", "test": "NODE_ENV=development jest --no-cache" }, "keywords": [ "cryptoPro", "cryptoProCsp" ], "author": "Dmitry Kuznetsov", "license": "MIT", "bugs": { "url": "https://github.com/batmandarkside/CrytoProCsp/issues" }, "homepage": "https://github.com/batmandarkside/CrytoProCsp", "dependencies": { "babel-cli": "6.18.0", "babel-core": "6.22.1", "babel-eslint": "^6.1.2", "babel-loader": "^7.1.2", "babel-plugin-add-module-exports": "^0.2.1", "babel-plugin-dynamic-import-node": "1.0.0", "babel-plugin-module-resolver": "2.7.1", "babel-polyfill": "^6.26.0", "babel-preset-airbnb": "^2.0.0", "babel-preset-es2015": "^6.24.1", "babel-preset-flow": "^6.23.0", "babel-preset-stage-0": "6.16.0", "chai": "^4.1.2", "eslint": "^4.18.0", "eslint-config-standard": "10.2.1", "eslint-plugin-flowtype": "^2.44.0", "eslint-plugin-import": "^2.8.0", "eslint-plugin-node": "^6.0.0", "eslint-plugin-promise": "^3.6.0", "eslint-plugin-standard": "^3.0.1", "expect": "^1.12.1", "file-loader": "^0.8.4", "flow-bin": "^0.65.0", "jest": "^22.3.0", "lodash": "^4.17.5", "standard": "^10.0.3", "webpack": "^3.11.0" }, "devDependencies": {}, "babel": { "plugins": [ [ "module-resolver", { "root": [ "." ], "alias": { "app": "./src", "root": "." } }, "add-module-exports" ] ], "presets": [ "es2015", "flow", "stage-0" ], "env": { "production": { "plugins": [ "add-module-exports" ] } } }, "jest": { "testEnvironment": "jsdom", "notify": false, "moduleFileExtensions": [ "js" ], "moduleDirectories": [ "node_modules", "src" ], "setupFiles": [ "<rootDir>/config/jest/setupScript.js" ], "moduleNameMapper": { "\\.(css|less)$": "identity-obj-proxy", "^.+\\.(png|jpg|gif|ttf|eot|svg)$": "<rootDir>/config/jest/FileStub.js" }, "transformIgnorePatterns": [ "/node_modules/" ], "modulePathIgnorePatterns": [ "<rootDir>/lib/" ], "testRegex": "__tests__/.*\\.test\\.js$", "unmockedModulePathPatterns": [ "<rootDir>/node_modules/fbjs/" ] } }