2017-05-18 21:21:33 +03:00
|
|
|
{
|
|
|
|
"name": "joyent-ui-toolkit",
|
2017-11-23 14:18:38 +02:00
|
|
|
"version": "3.1.6",
|
2017-05-18 21:21:33 +03:00
|
|
|
"license": "MPL-2.0",
|
|
|
|
"repository": "github:yldio/joyent-portal",
|
2017-06-06 16:30:43 +03:00
|
|
|
"main": "dist/umd/index.js",
|
|
|
|
"jsnext:main": "dist/es/index.js",
|
|
|
|
"module": "dist/es/index.js",
|
2017-05-18 21:21:33 +03:00
|
|
|
"scripts": {
|
2017-12-15 16:09:09 +02:00
|
|
|
"lint-ci": "eslint . --ext .js --ext .md && echo 0 `# stylelint './src/**/*.js'`",
|
|
|
|
"lint": "eslint . --fix --ext .js --ext .md && echo 0 `# stylelint './src/**/*.js'`",
|
2017-06-01 17:57:28 +03:00
|
|
|
"test-ci": "echo 0",
|
2017-10-09 16:35:52 +03:00
|
|
|
"test": "echo 0",
|
|
|
|
"test:visual": "run-p serve jest",
|
|
|
|
"jest": "jest",
|
|
|
|
"serve": "http-server styleguide -p 6060 -s",
|
2017-11-23 14:18:38 +02:00
|
|
|
"compile:es": "babel src --out-dir dist/es",
|
|
|
|
"compile:umd": "UMD=1 babel src --out-dir dist/umd",
|
2017-06-06 16:30:43 +03:00
|
|
|
"compile": "redrun -p compile:*",
|
2017-11-23 14:18:38 +02:00
|
|
|
"dev": "NODE_ENV=development npm run compile -- -- --watch --source-maps inline",
|
2017-10-18 05:29:47 +03:00
|
|
|
"styleguide:build": "NODE_ENV=production styleguidist build",
|
|
|
|
"styleguide": "NODE_ENV=development styleguidist server",
|
2017-11-23 14:18:38 +02:00
|
|
|
"prepublish": "NODE_ENV=production npm run compile"
|
2017-05-18 21:21:33 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"camel-case": "^3.0.0",
|
2017-10-11 19:59:59 +03:00
|
|
|
"joy-react-broadcast": "^0.6.9",
|
2017-11-23 14:18:38 +02:00
|
|
|
"joyent-icons": "^2.0.0",
|
2017-11-09 13:27:32 +02:00
|
|
|
"lodash.isboolean": "^3.0.3",
|
2017-05-18 21:21:33 +03:00
|
|
|
"lodash.isstring": "^4.0.1",
|
2017-10-10 16:47:50 +03:00
|
|
|
"normalized-styled-components": "^1.0.17",
|
2017-10-19 16:36:18 +03:00
|
|
|
"outy": "^0.1.2",
|
2017-09-20 12:30:53 +03:00
|
|
|
"pascal-case": "^2.0.1",
|
2017-10-09 21:01:34 +03:00
|
|
|
"prop-types": "^15.6.0",
|
2017-09-27 17:22:01 +03:00
|
|
|
"react-bundle": "^1.0.4",
|
2017-12-06 17:03:40 +02:00
|
|
|
"react-input-range": "^1.2.2",
|
2017-10-31 12:03:44 +02:00
|
|
|
"react-popper": "^0.7.4",
|
2017-11-23 14:18:38 +02:00
|
|
|
"react-responsive": "^4.0.3",
|
2017-11-09 13:27:32 +02:00
|
|
|
"react-styled-flexboxgrid": "^2.1.1",
|
|
|
|
"redrun": "^5.10.0",
|
2017-10-10 16:47:50 +03:00
|
|
|
"remcalc": "^1.0.9",
|
2017-11-09 13:27:32 +02:00
|
|
|
"rnd-id": "^2.0.0",
|
2017-12-15 16:09:09 +02:00
|
|
|
"styled-components": "^2.3.0",
|
2017-10-10 16:47:50 +03:00
|
|
|
"styled-is": "^1.1.0",
|
2017-10-18 05:29:47 +03:00
|
|
|
"unitcalc": "^1.1.1"
|
2017-05-18 21:21:33 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-10-18 05:29:47 +03:00
|
|
|
"babel-cli": "^6.26.0",
|
2017-11-23 14:18:38 +02:00
|
|
|
"babel-plugin-inline-react-svg": "^0.5.2",
|
2017-11-09 13:27:32 +02:00
|
|
|
"babel-plugin-lodash": "^3.3.2",
|
2017-10-20 16:41:14 +03:00
|
|
|
"babel-plugin-transform-es3-member-expression-literals": "^6.22.0",
|
|
|
|
"babel-plugin-transform-es3-property-literals": "^6.22.0",
|
|
|
|
"babel-preset-es2015": "^6.24.1",
|
2017-11-23 14:18:38 +02:00
|
|
|
"babel-preset-joyent-portal": "^4.0.4",
|
2017-12-15 16:09:09 +02:00
|
|
|
"classnames": "^2.2.5",
|
2017-12-06 17:03:40 +02:00
|
|
|
"codemirror": "^5.32.0",
|
2017-11-23 14:18:38 +02:00
|
|
|
"eslint": "^4.13.1",
|
2017-10-31 12:03:44 +02:00
|
|
|
"eslint-config-joyent-portal": "^3.2.0",
|
2017-10-09 16:35:52 +03:00
|
|
|
"http-server": "^0.10.0",
|
2017-10-09 21:01:34 +03:00
|
|
|
"jest": "^21.2.1",
|
|
|
|
"jest-diff": "^21.2.1",
|
2017-11-09 13:27:32 +02:00
|
|
|
"jest-image-snapshot": "^2.2.0",
|
2017-10-09 21:01:34 +03:00
|
|
|
"jest-matcher-utils": "^21.2.1",
|
|
|
|
"jest-snapshot": "^21.2.1",
|
2017-10-31 12:03:44 +02:00
|
|
|
"jest-styled-components": "^4.9.0",
|
2017-11-23 14:18:38 +02:00
|
|
|
"joyent-react-scripts": "^6.2.0",
|
2017-10-31 12:29:15 +02:00
|
|
|
"lodash.isboolean": "^3.0.3",
|
2017-10-09 16:35:52 +03:00
|
|
|
"navalia": "^1.2.0",
|
2017-12-06 17:03:40 +02:00
|
|
|
"react": "^16.2.0",
|
2017-10-31 12:03:44 +02:00
|
|
|
"react-docgen": "^3.0.0-beta8",
|
2017-10-09 21:01:34 +03:00
|
|
|
"react-docgen-displayname-handler": "^1.0.1",
|
2017-12-06 17:03:40 +02:00
|
|
|
"react-dom": "^16.2.0",
|
2017-11-23 14:18:38 +02:00
|
|
|
"react-styleguidist": "^6.0.33",
|
2017-12-06 17:03:40 +02:00
|
|
|
"react-test-renderer": "^16.2.0",
|
2017-07-26 15:50:49 +03:00
|
|
|
"redux": "^3.7.2",
|
2017-10-09 16:35:52 +03:00
|
|
|
"serve-static": "^1.13.1",
|
2017-12-15 16:09:09 +02:00
|
|
|
"stylelint": "^8.4.0",
|
2017-10-10 16:47:50 +03:00
|
|
|
"stylelint-config-joyent-portal": "^2.0.1",
|
2017-12-06 17:03:40 +02:00
|
|
|
"webpack": "^3.10.0"
|
2017-06-09 07:26:25 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2017-11-23 14:18:38 +02:00
|
|
|
"joyent-manifest-editor": "^1.4.0",
|
2017-12-06 17:03:40 +02:00
|
|
|
"react": "^16.2.0",
|
2017-11-23 14:18:38 +02:00
|
|
|
"react-dom": "^16.2.0"
|
2017-05-18 21:21:33 +03:00
|
|
|
}
|
|
|
|
}
|