-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@ungap/once",
"version": "0.1.2",
"description": "Function.prototype.once polyfill",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run rollup:es && npm run rollup:index && npm run test",
"cjs": "ascjs esm cjs",
"rollup:es": "rollup --config rollup/es.config.js && sed -i.bck 's/^var /self./' es.js && rm -rf es.js.bck",
"rollup:index": "rollup --config rollup/index.config.js",
"coveralls": "c8 report --reporter=text-lcov | coveralls",
"test": "c8 node test/index.js"
},
"keywords": [
"once",
"polyfill",
"function"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"ascjs": "^5.0.1",
"c8": "^7.11.0",
"coveralls": "^3.1.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"./package.json": "./package.json"
},
"unpkg": "es.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ungap/once.git"
},
"bugs": {
"url": "https://github.com/ungap/once/issues"
},
"homepage": "https://github.com/ungap/once#readme"
}