source: frontend/node_modules/dedent/package.json

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 997 bytes
Line 
1{
2 "name": "dedent",
3 "version": "0.7.0",
4 "description": "An ES6 string tag that strips indentation from multi-line strings",
5 "main": "dist/dedent.js",
6 "files": [
7 "dist/dedent.js",
8 "LICENSE"
9 ],
10 "repository": {
11 "type": "git",
12 "url": "git://github.com/dmnd/dedent.git"
13 },
14 "keywords": [
15 "dedent",
16 "tag",
17 "multi-line string",
18 "es6"
19 ],
20 "author": {
21 "name": "Desmond Brand",
22 "email": "dmnd@desmondbrand.com",
23 "url": "http://desmondbrand.com"
24 },
25 "license": "MIT",
26 "bugs": {
27 "url": "https://github.com/dmnd/dedent/issues"
28 },
29 "homepage": "https://github.com/dmnd/dedent",
30 "devDependencies": {
31 "babel-cli": "^6.22.2",
32 "babel-preset-es2015": "^6.22.0",
33 "babel-preset-es2016": "^6.22.0",
34 "babel-preset-es2017": "^6.22.0",
35 "eslint": "^3.14.1",
36 "jest": "^18.1.0"
37 },
38 "scripts": {
39 "build": "babel dedent.js --out-file dist/dedent.js",
40 "lint": "eslint dedent.js __tests__",
41 "test": "jest"
42 }
43}
Note: See TracBrowser for help on using the repository browser.