-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
{
"name": "contentful-wizard",
"version": "0.0.4",
"description": "This is a library to add interactive content explorer to your contentful-powered project.",
"jsnext:main": "lib/es2015/index.js",
"module": "lib/es2015/index.js",
"typings": "lib/es2015/index.d.ts",
"main": "lib/commonjs/index.js",
"files": [
"lib",
"dist",
"src",
"README.md",
"package.json"
],
"scripts": {
"clean": "rimraf lib dist coverage",
"precommit": "lint-staged",
"prepublish": "npm run clean && npm run test && npm run build",
"build:es2015": "tsc -P tsconfig.json",
"build:es2015:watch": "tsc --watch -P tsconfig.json",
"build:commonjs": "tsc -P tsconfig.commonjs.json",
"build:umd": "cross-env NODE_ENV=development webpack",
"build:umd:min": "cross-env NODE_ENV=production webpack",
"build:dist": "npm run build:umd && npm run build:umd:min",
"build": "npm run build:es2015 && npm run build:commonjs && npm run build:dist",
"lint": "tslint src/**/*.ts",
"test": "npm run lint"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bloomca/contentful-wizard.git"
},
"keywords": [
"contentful",
"wizard",
"explore"
],
"author": "Seva Zaikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bloomca/contentful-wizard/issues"
},
"homepage": "https://github.com/Bloomca/contentful-wizard#readme",
"dependencies": {
"webpack": "^3.10.0",
"contentful": "^8.3.7"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015-rollup": "^3.0.0",
"cross-env": "^5.1.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"prettier": "1.9.1",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.6.0",
"typescript": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.4"
}
}