This repository has been archived by the owner on Sep 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
77 lines (77 loc) · 2.32 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
72
73
74
75
76
77
{
"name": "babel-plugin-webpack-alias",
"description": "babel 6 plugin which allows to use webpack aliases",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build",
"dev": "watch 'npm run build' src/",
"test": "npm run test:lint && npm run test:plugin",
"test:watch": "ava -w",
"test:win": "ava",
"test:lint": "eslint src/ test/",
"test:plugin": "eslint src/ test/ && nyc --cache --reporter=text ava",
"test:ava": "cd examples/ava; rm -rf node_modules; npm it",
"test:mocha": "cd examples/mocha; rm -rf node_modules; npm it",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/trayio/babel-plugin-webpack-alias/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/trayio/babel-plugin-webpack-alias.git"
},
"author": "Adrien Antoine <[email protected]> (http://tray.io)",
"homepage": "https://github.com/trayio/babel-plugin-webpack-alias#readme",
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-plugin-transform-es2015-parameters": "^6.11.4",
"babel-plugin-transform-es2015-spread": "^6.5.2",
"babel-plugin-transform-export-extensions": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.5.2",
"babel-register": "^6.14.0",
"codecov": "^1.0.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.5.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.0.0",
"estraverse-fb": "^1.3.1",
"nyc": "^10.0.0",
"semantic-release": "^6.3.2",
"watch": "^1.0.0"
},
"keywords": [
"babel",
"webpack",
"alias",
"mocha",
"testing"
],
"ava": {
"files": [
"test/**/*.spec.js"
],
"require": [
"babel-register"
]
},
"dependencies": {
"babel-types": "^6.14.0",
"find-up": "^2.0.0",
"lodash.some": "^4.5.1",
"lodash.template": "^4.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}