-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
113 lines (113 loc) · 3.74 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "blip-toolkit",
"description": "'BLiP's Toolkit'",
"version": "1.1.0",
"license": "MIT",
"main": "dist/blip-toolkit.js",
"files": [
"dist/blip-toolkit.css",
"dist/blip-toolkit.js",
"dist/scss/*"
],
"author": "Breno Queiroz <[email protected]>",
"private": false,
"scripts": {
"docs": "webpack --mode production --config ./build/webpack.prod.conf.js && node ./docs/src/index.js",
"stylemark": "node ./docs/src/index.js",
"commit": "./node_modules/.bin/git-cz",
"start": "./node_modules/.bin/webpack-dev-server --mode development --open --config ./build/webpack.dev.conf.js",
"build": "webpack --mode production --config ./build/webpack.prod.conf.js",
"watch": "webpack --mode production --config ./build/webpack.prod.conf.js --watch",
"lint": "./node_modules/.bin/eslint .",
"semantic-release": "./node_modules/.bin/semantic-release --prepare",
"test": "./node_modules/.bin/babel-node ./spec/run.js",
"test:show-coverage": "./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli cover --report text ./spec/run.js",
"test:report-html": "./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli cover --report html ./spec/run.js",
"test:check-coverage": "./node_modules/.bin/istanbul check-coverage",
"test:upload-coverage": "cat ./coverage/lcov.info | codecov"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-istanbul": "^0.12.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"commitizen": "^2.9.6",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"cz-customizable": "^5.3.0",
"cz-customizable-ghooks": "^1.5.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"ghooks": "^2.0.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"jasmine-spec-reporter": "^4.2.1",
"jsdom": "^11.11.0",
"mini-css-extract-plugin": "^0.4.0",
"module-alias": "^2.0.6",
"node-sass": "^4.14.1",
"require-hacker": "^3.0.1",
"sass-loader": "^7.0.1",
"semantic-release": "^15.2.0",
"svg-inline-loader": "^0.8.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^1.1.2",
"webpack": "4.32.1",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.7.1",
"webpack-merge": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
},
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint && npm run test:show-coverage",
"commit-msg": "cz-customizable-ghooks $2"
}
},
"_moduleAliases": {
"@lib": "./src/lib",
"@component": "./src/components/component.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/takenet/blip-toolkit.git"
},
"bugs": {
"url": "https://github.com/takenet/blip-toolkit/issues"
},
"homepage": "https://github.com/takenet/blip-toolkit#readme",
"keywords": [
"blip",
"css",
"toolkit",
"components"
],
"dependencies": {
"babel-polyfill": "^6.26.0",
"nanocomponent": "^6.5.2",
"nanohtml": "^1.2.4",
"stylemark": "^3.0.1",
"tachyons": "^4.10.0"
}
}