Skip to content

Commit d012996

Browse files
committed
bower.json
1 parent 74573e0 commit d012996

File tree

4 files changed

+43
-1
lines changed

4 files changed

+43
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@
1818
/.vs
1919
/_other
2020
/node_modules
21+
/bower_components
2122
/test/typescript/*.js

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414
/.git
1515
/_other
1616
/build/bin
17+
/node_modules
18+
/bower_components
1719
/test
1820
/test/typescript/*.js

bower.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "multiplex",
3+
"version": "0.9.4",
4+
"description": "Comprehensive data-structure and LINQ library for JavaScript.",
5+
"keywords": [
6+
"multiplex",
7+
"javascript",
8+
"linq",
9+
"data-structure",
10+
"iterator",
11+
"library",
12+
"framework"
13+
],
14+
"homepage": "https://github.com/multiplex/multiplex.js",
15+
"license": "Apache",
16+
"moduleType": [
17+
"globals"
18+
],
19+
"main": [
20+
"build/multiplex.js"
21+
],
22+
"ignore": [
23+
"/.*",
24+
"/Gruntfile.js",
25+
"/test"
26+
],
27+
"dependencies": { },
28+
"devDependencies": {
29+
"grunt": "0.4.5",
30+
"grunt-cli": "0.1.x",
31+
"grunt-contrib-clean": "0.6.x",
32+
"grunt-contrib-copy": "0.8.x",
33+
"grunt-contrib-qunit": "0.7.x",
34+
"grunt-contrib-jshint": "0.11.x",
35+
"grunt-contrib-uglify": "0.9.x",
36+
"grunt-contrib-watch": "0.6.x"
37+
},
38+
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"linq",
1818
"data-structure",
1919
"iterator",
20-
"library"
20+
"library",
21+
"framework"
2122
],
2223
"bugs": {
2324
"url": "https://github.com/multiplex/multiplex.js/issues"

0 commit comments

Comments
 (0)