142 lines
4.1 KiB
JSON
142 lines
4.1 KiB
JSON
{
|
|
"_from": "jspm-config@^0.3.0",
|
|
"_id": "jspm-config@0.3.4",
|
|
"_inBundle": false,
|
|
"_integrity": "sha1-RMJpAuSujs4jZs7cn/FrEKXzkcY=",
|
|
"_location": "/jspm-config",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "jspm-config@^0.3.0",
|
|
"name": "jspm-config",
|
|
"escapedName": "jspm-config",
|
|
"rawSpec": "^0.3.0",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^0.3.0"
|
|
},
|
|
"_requiredBy": [
|
|
"/typings-core"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/jspm-config/-/jspm-config-0.3.4.tgz",
|
|
"_shasum": "44c26902e4ae8ece2366cedc9ff16b10a5f391c6",
|
|
"_spec": "jspm-config@^0.3.0",
|
|
"_where": "/nfs/repos/trunk/trunk-images/node_modules/typings-core",
|
|
"author": {
|
|
"name": "Homa Wong",
|
|
"email": "homawong@gmail.com"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"dist-spec/**/*.spec.js"
|
|
],
|
|
"source": [
|
|
"scripts/*.js",
|
|
"dist-spec/**/*.js",
|
|
"*.json"
|
|
],
|
|
"require": [
|
|
"./scripts/setup-browser-env.js",
|
|
"./scripts/setup-test-env.js"
|
|
]
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/unional/jspm-config/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"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"
|
|
},
|
|
"deprecated": false,
|
|
"description": "Read jspm config and such",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"typings.json"
|
|
],
|
|
"homepage": "https://github.com/unional/jspm-config",
|
|
"keywords": [
|
|
"jspm",
|
|
"systemjs"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/es5/index.js",
|
|
"module": "dist/es2015/index.js",
|
|
"name": "jspm-config",
|
|
"nyc": {
|
|
"exclude": [
|
|
"scripts",
|
|
"**/*.spec.*",
|
|
"**/fixtures/**/*"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/unional/jspm-config.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && npm run build-es5",
|
|
"build-es2015": "tsc -p tsconfig.es2015.json",
|
|
"build-es5": "tsc -p tsconfig.es5.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"
|
|
},
|
|
"typings": "dist/es5/index.d.ts",
|
|
"version": "0.3.4"
|
|
}
|