1
|
{
|
2
|
"name": "symbol-observable",
|
3
|
"version": "1.2.0",
|
4
|
"description": "Symbol.observable ponyfill",
|
5
|
"license": "MIT",
|
6
|
"repository": "blesh/symbol-observable",
|
7
|
"author": {
|
8
|
"name": "Ben Lesh",
|
9
|
"email": "ben@benlesh.com"
|
10
|
},
|
11
|
"engines": {
|
12
|
"node": ">=0.10.0"
|
13
|
},
|
14
|
"scripts": {
|
15
|
"test": "npm run build && mocha && tsc && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill",
|
16
|
"build": "babel es --out-dir lib",
|
17
|
"prepublish": "npm test"
|
18
|
},
|
19
|
"files": [
|
20
|
"index.js",
|
21
|
"ponyfill.js",
|
22
|
"index.d.ts",
|
23
|
"es/index.js",
|
24
|
"es/ponyfill/js",
|
25
|
"lib/index.js",
|
26
|
"lib/ponyfill.js"
|
27
|
],
|
28
|
"main": "lib/index.js",
|
29
|
"module": "es/index.js",
|
30
|
"jsnext:main": "es/index.js",
|
31
|
"typings": "index.d.ts",
|
32
|
"keywords": [
|
33
|
"symbol",
|
34
|
"observable",
|
35
|
"observables",
|
36
|
"ponyfill",
|
37
|
"polyfill",
|
38
|
"shim"
|
39
|
],
|
40
|
"devDependencies": {
|
41
|
"babel-cli": "^6.9.0",
|
42
|
"babel-preset-es2015": "^6.9.0",
|
43
|
"babel-preset-es3": "^1.0.0",
|
44
|
"chai": "^3.5.0",
|
45
|
"check-es3-syntax-cli": "^0.1.0",
|
46
|
"mocha": "^2.4.5",
|
47
|
"typescript": "^2.1.4"
|
48
|
}
|
49
|
}
|