-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
50 lines (50 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "symbol-observable",
"version": "4.0.0",
"description": "Symbol.observable ponyfill",
"license": "MIT",
"repository": "blesh/symbol-observable",
"author": {
"name": "Ben Lesh",
"email": "[email protected]"
},
"scripts": {
"test": "npm run build && mocha && tsc && node ./ts-test/test.js && check-es3-syntax -p lib/ --kill",
"build": "babel es --out-dir lib",
"prepublish": "npm test"
},
"files": [
"index.js",
"ponyfill.js",
"index.d.ts",
"ponyfill.d.ts",
"es/index.js",
"es/ponyfill.js",
"lib/index.js",
"lib/ponyfill.js"
],
"main": "lib/index.js",
"module": "es/index.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",
"babel-preset-es3": "^1.0.0",
"chai": "^3.5.0",
"check-es3-syntax-cli": "^0.1.0",
"mocha": "^2.4.5",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=0.10"
}
}