-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.93 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
70
71
{
"name": "babel-plugin-rename-umd-globals",
"version": "1.0.0",
"description": "Renames the module's global variable and adds optional global aliases",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"autotest": "tape-watch -r babel-register -r babel-polyfill tests/*.js -p tap-diff",
"babel": "babel src -d lib",
"build": "npm run header && npm run standard && npm test && npm run babel",
"cover": "nyc --require babel-core/register --reporter=lcov --reporter=text --all tape tests/*.js | tap-nyc",
"cover:report:coveralls": "nyc report --reporter=text-lcov | coveralls",
"header": "header src/*.js lib/*.js",
"standard": "standard",
"test": "tape -r babel-register tests/*.js | tap-diff"
},
"nyc": {
"include": [
"src"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamonkko/babel-plugin-rename-umd-globals.git"
},
"keywords": [
"global",
"module",
"babel",
"rename",
"umd",
"name",
"globals",
"export"
],
"author": "Jarkko Mönkkönen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamonkko/babel-plugin-rename-umd-globals/issues"
},
"homepage": "https://github.com/jamonkko/babel-plugin-rename-umd-globals#readme",
"engines": {
"node": ">= 0.10",
"iojs": ">= 1.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.16.0",
"babel-eslint": "^8.0.0",
"babel-preset-env": "^1.6.1",
"coveralls": "^3.1.0",
"module-header": "github:jamonkko/module-header#replace-existing",
"nyc": "^11.0.1",
"standard": "^11.0.0",
"tap-diff": "^0.1.1",
"tap-nyc": "^1.0.3",
"tape": "^4.8.0",
"tape-watch": "^2.3.0"
},
"dependencies": {
"babel-plugin-rename-assigned-properties": "^1.0.0"
},
"standard": {
"parser": "babel-eslint"
}
}