forked from dmvaldman/samsara
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.75 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
{
"name": "samsarajs",
"description": "Streaming layout for the web",
"url": "http://samsaraJS.org",
"author": "David Valdman <[email protected]>",
"version": "0.2.0",
"main": "dist/samsara.js",
"scripts": {
"test": "node_modules/.bin/intern-client config=tests/intern reporters=Pretty",
"docs": "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",
"docs-example-logo": "docco -l parallel examples/Logo/js/main.js examples/Logo/js/app/*.js -o examples/Logo/docs",
"docs-example-sidemenu": "docco -l parallel examples/SideMenu/js/main.js examples/SideMenu/js/app/*.js -o examples/SideMenu/docs",
"build": "npm run build-bundle && npm run build-min",
"build-bundle": "webpack --entry ./samsara/index.js --output-filename samsara.js --output-path ./dist --output-library Samsara --output-library-target umd",
"build-min": "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",
"MPL V2"
],
"bugs": {
"url": "https://github.com/dmvaldman/samsara/issues"
},
"homepage": "https://github.com/dmvaldman/samsara#readme",
"devDependencies": {
"intern": "^3.0.6",
"uglify-js": "^2.6.1",
"webpack": "^1.12.9",
"yuidoc-bootstrap-theme": "dmvaldman/yuidoc-bootstrap-theme",
"yuidocjs": "^0.9.0"
}
}