UNPKG

jspm-config

Version:
117 lines (116 loc) 3.41 kB
{ "name": "jspm-config", "version": "0.3.4", "description": "Read jspm config and such", "main": "dist/es5/index.js", "module": "dist/es2015/index.js", "typings": "dist/es5/index.d.ts", "files": [ "dist", "typings.json" ], "scripts": { "build": "npm run clean && npm run build-es5", "build-es5": "tsc -p tsconfig.es5.json", "build-es2015": "tsc -p tsconfig.es2015.json", "bundle": "npm run bundle-rollup && npm run bundle-webpack", "bundle-rollup": "rollup --config rollup.config.es2015.js", "bundle-webpack": "webpack --config webpack.config.es5.js", "clean": "rimraf dist", "coverage": "nyc --check-coverage --branches 80 --functions 85 --lines 85 npm test", "coveralls": "nyc report --reporter=text-lcov | coveralls", "demo": "node scripts/demo.js", "dependency-check": "dependency-check . --unused --no-dev && dependency-check . --missing --no-dev", "lint": "tslint \"src/**/*.ts\"", "postpublish": "git push", "prepare": "typings install && npm run build", "preversion": "git pull && npm run verify", "test": "rimraf dist-spec && tsc && ava", "verify": "npm run lint && npm run coverage && npm run build && npm run dependency-check", "watch": "npm run clean && node scripts/watch.js" }, "author": { "name": "Homa Wong", "email": "homawong@gmail.com" }, "homepage": "https://github.com/unional/jspm-config", "bugs": { "url": "https://github.com/unional/jspm-config/issues" }, "repository": { "type": "git", "url": "git://github.com/unional/jspm-config.git" }, "keywords": [ "jspm", "systemjs" ], "license": "MIT", "ava": { "files": [ "dist-spec/**/*.spec.js" ], "source": [ "scripts/*.js", "dist-spec/**/*.js", "*.json" ], "require": [ "./scripts/setup-browser-env.js", "./scripts/setup-test-env.js" ] }, "nyc": { "exclude": [ "scripts", "**/*.spec.*", "**/fixtures/**/*" ] }, "devDependencies": { "@types/graceful-fs": "^2.0.29", "@types/node": "^7.0.0", "@types/strip-bom": "^3.0.0", "@types/xtend": "^4.0.2", "aurelia-logging": "^1.2.0", "aurelia-logging-color": "^0.4.10", "aurelia-polyfills": "^1.1.1", "ava": "^0.17.0", "ava-fixture": "^0.7.0", "browser-env": "^2.0.19", "core-js": "^2.4.1", "dependency-check": "^2.7.0", "eslint": "^3.13.1", "eslint-config-unional": "^0.2.3", "jspm": "^0.17.0-beta.32", "nyc": "^10.0.0", "param-case": "^2.1.0", "pascal-case": "^2.0.0", "rimraf": "^2.5.4", "rollup": "^0.41.3", "rollup-plugin-commonjs": "^7.0.0", "rollup-plugin-node-builtins": "^2.0.0", "rollup-plugin-node-globals": "^1.1.0", "rollup-plugin-node-resolve": "^2.0.0", "rollup-plugin-sourcemaps": "^0.4.1", "rollup-plugin-uglify": "^1.0.1", "source-map-loader": "^0.1.6", "tslint": "^4.3.1", "tslint-config-unional": "^0.6.0", "typescript": "^2.1.5", "typings": "^2.1.0", "uglify-js": "github:mishoo/UglifyJS2#harmony", "webpack": "^2.2.0-rc.4" }, "dependencies": { "any-promise": "^1.3.0", "graceful-fs": "^4.1.4", "make-error-cause": "^1.2.1", "object.pick": "^1.1.2", "parse-json": "^2.2.0", "strip-bom": "^3.0.0", "thenify": "^3.2.0", "throat": "^3.0.0", "xtend": "^4.0.1" } }