-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "data-components",
"main": "index.js",
"version": "0.3.2",
"description": "Tiny component structure for web applications",
"license": "MIT",
"repository": "rafaelrinaldi/data-components",
"bugs": {
"url": "https://github.com/rafaelrinaldi/data-components/issues"
},
"homepage": "https://github.com/rafaelrinaldi/data-components#readme",
"author": {
"name": "Rafael Rinaldi",
"email": "[email protected]",
"url": "rinaldi.io"
},
"scripts": {
"gh-pages": "git checkout gh-pages && git merge master && git push origin gh-pages && git checkout master",
"build": "uglifyjs index.js -c -m -o dist/index.min.js --comments --stats && npm run meta",
"meta": "node tools/meta.js dist/index.min.js",
"lint": "xo index.js --space --env=browser",
"test": "npm run lint"
},
"keywords": [
"architecture",
"attributes",
"components",
"component",
"block",
"blocks",
"data",
"ui",
"interface",
"micro",
"small",
"tiny",
"structure"
],
"devDependencies": {
"uglify-js": "^2.6.2",
"xo": "^0.13.0"
}
}