You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
953 B
46 lines
953 B
2 years ago
|
{
|
||
|
"name": "symbol-observable",
|
||
|
"version": "1.0.1",
|
||
|
"description": "Symbol.observable ponyfill",
|
||
|
"license": "MIT",
|
||
|
"repository": "blesh/symbol-observable",
|
||
|
"author": {
|
||
|
"name": "Ben Lesh",
|
||
|
"email": "ben@benlesh.com"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=0.10.0"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "npm run build && mocha && tsc ./ts-test/test.ts && node ./ts-test/test.js",
|
||
|
"build": "babel es --out-dir lib",
|
||
|
"prepublish": "npm test"
|
||
|
},
|
||
|
"files": [
|
||
|
"index.js",
|
||
|
"ponyfill.js",
|
||
|
"index.d.ts",
|
||
|
"es/index.js",
|
||
|
"es/ponyfill/js",
|
||
|
"lib/index.js",
|
||
|
"lib/ponyfill.js"
|
||
|
],
|
||
|
"jsnext:main": "es/index.js",
|
||
|
"typings": "index.d.ts",
|
||
|
"keywords": [
|
||
|
"symbol",
|
||
|
"observable",
|
||
|
"observables",
|
||
|
"ponyfill",
|
||
|
"polyfill",
|
||
|
"shim"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"babel-cli": "^6.9.0",
|
||
|
"babel-preset-es2015": "^6.9.0",
|
||
|
"chai": "^3.5.0",
|
||
|
"mocha": "^2.4.5",
|
||
|
"typescript": "^1.8.10"
|
||
|
}
|
||
|
}
|