-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "babel-plugin-transform-import-bangtext-node",
"version": "0.1.4",
"description": "Allows imports with the '!text' suffix to be imported as a string in Node.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib --copy-files",
"clean": "rm -rf lib",
"lint": "eslint .",
"test": "npm run lint && mocha --compilers js:babel-register",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlywei/babel-plugin-transform-import-bangtext-node.git"
},
"keywords": [
"babel-plugin",
"SystemJS"
],
"author": "Wei Wang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/onlywei/babel-plugin-transform-import-bangtext-node/issues"
},
"homepage": "https://github.com/onlywei/babel-plugin-transform-import-bangtext-node#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"eslint": "^1.10.3",
"mocha": "^2.3.4"
}
}