53 lines
1.1 KiB
JSON
53 lines
1.1 KiB
JSON
{
|
|
"name": "dedent",
|
|
"version": "0.4.0",
|
|
"description": "An ES6 string tag that strips indentation from multi-line strings",
|
|
"main": "dist/dedent.js",
|
|
"files": [
|
|
"dist/dedent.js",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/dmnd/dedent.git"
|
|
},
|
|
"keywords": [
|
|
"dedent",
|
|
"tag",
|
|
"multi-line string",
|
|
"es6"
|
|
],
|
|
"author": {
|
|
"name": "Desmond Brand",
|
|
"email": "dmnd@desmondbrand.com",
|
|
"url": "http://desmondbrand.com"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/dmnd/dedent/issues"
|
|
},
|
|
"homepage": "https://github.com/dmnd/dedent",
|
|
"devDependencies": {
|
|
"babel-eslint": "^2.0.2",
|
|
"babel-jest": "^5.0.1",
|
|
"eslint": "^0.18.0",
|
|
"gulp": "^3.8.10",
|
|
"gulp-babel": "^5.1.0",
|
|
"jest-cli": "^0.2.1"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "eslint dedent.js __tests__"
|
|
},
|
|
"jest": {
|
|
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
|
|
"testFileExtensions": [
|
|
"js"
|
|
],
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json"
|
|
]
|
|
}
|
|
}
|