forked from dmvaldman/samsara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.62 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
{
"name": "samsarajs",
"description": "Reactive layout for user interfaces",
"url": "http://samsaraJS.org",
"author": "David Valdman <[email protected]>",
"version": "0.2.4",
"main": "dist/samsara.js",
"scripts": {
"test": "npm run lint && phantomjs test/vendor/runner.js test/index.html",
"lint": "$(npm bin)/eslint samsara/",
"docs": "$(npm bin)/yuidoc ./samsara -t ./node_modules/yuidoc-bootstrap-theme -H ./node_modules/yuidoc-bootstrap-theme/helpers/helpers.js -o ./docs",
"docs-examples": "npm run docs-example-logo && npm run docs-example-sidemenu && npm run docs-example-carousel && npm run docs-example-google-now && npm run docs-example-parallax-cats && npm run docs-example-safari-tabs",
"docs-example-logo": "$(npm bin)/docco -l parallel examples/Logo/js/main.js examples/Logo/js/app/*.js -o examples/Logo/docs",
"docs-example-sidemenu": "$(npm bin)/docco -l parallel examples/SideMenu/js/main.js examples/SideMenu/js/app/*.js -o examples/SideMenu/docs",
"docs-example-carousel": "$(npm bin)/docco -l parallel examples/Carousel/js/main.js examples/Carousel/js/app/*.js -o examples/Carousel/docs",
"docs-example-google-now": "$(npm bin)/docco -l parallel examples/GoogleNow/js/main.js examples/GoogleNow/js/app/*.js -o examples/GoogleNow/docs",
"docs-example-parallax-cats": "$(npm bin)/docco -l parallel examples/ParallaxCats/js/main.js examples/ParallaxCats/js/app/*.js -o examples/ParallaxCats/docs",
"docs-example-safari-tabs": "$(npm bin)/docco -l parallel examples/SafariTabs/js/main.js examples/SafariTabs/js/app/*.js -o examples/SafariTabs/docs",
"build": "npm run build-bundle && npm run build-min",
"build-bundle": "$(npm bin)/webpack --entry ./samsara/index.js --output-filename samsara.js --output-path ./dist --output-library Samsara --output-library-target umd",
"build-min": "$(npm bin)/uglifyjs dist/samsara.js -o dist/samsara.min.js --mangle --compress warnings=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmvaldman/samsara.git"
},
"files": [
"dist/samsara.css",
"dist/samsara.js",
"dist/samsara.min.js",
"samsara"
],
"keywords": [
"UI",
"streams",
"FRP",
"reactive",
"layout",
"samsara"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dmvaldman/samsara/issues"
},
"homepage": "https://github.com/dmvaldman/samsara#readme",
"devDependencies": {
"docco": "^0.7.0",
"eslint": "^4.18.2",
"phantomjs": "^2.1.3",
"uglify-js": "^2.6.1",
"webpack": "^1.12.9",
"yuidoc-bootstrap-theme": "dmvaldman/yuidoc-bootstrap-theme",
"yuidocjs": "^0.9.0"
}
}