-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "es-promise",
"version": "1.0.4-beta.1",
"description": "Promise implementation of Promises/A+, and with es7 promise enhancements.",
"author": "Allex Wang <[email protected]>",
"browser": "dist/promise.umd.min.js",
"module": "dist/promise.esm.js",
"main": "dist/promise.umd.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/allex/es-promise.git"
},
"keywords": [
"promise",
"polyfill",
"Promises.try",
"Promise.prototype.finally"
],
"dependencies": {
"promise-polyfill": "^6.0.2"
},
"devDependencies": {
"@fedor/standard": "latest",
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-runtime": "^6.26.0",
"config-finder": "latest",
"dom-cache": "^1.0.0",
"replace-in-file": "^2.5.4",
"rollup-worker": "next",
"rollup-plugin-babel": "^3.0.2"
},
"peerDependencies": {},
"scripts": {
"build": "npm run lint:fix && rollup-bundle --config .fssrc.js",
"release": "node .build/release.js",
"publish": "npm run build",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint"
},
"maintainers": [
{
"name": "public",
"email": "[email protected]"
}
],
"fss": {
"extends": [
"./.fssrc.js"
],
"distname": "promise",
"library": "ESPromise",
"cdnPrefix": "//s2.analysys.cn/-/",
"externals": {
"@vue/utils": "VueUtils"
}
},
"standard": {
"ignore": [
"*.tmp"
]
}
}