Skip to content

Commit 116ff61

Browse files
Bower package management.
1 parent 74ab4f5 commit 116ff61

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

.bowerrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"directory": "vendor",
3+
"json": "bower.json"
4+
}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
support/tmp/
22
doc/static/builtin.js
33
doc/static/skulpt.js
4+
vendor/
45

56
*.pyc
67
.DS_Store

bower.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "skulpt",
3+
"version": "0.1.0",
4+
"main": "./dist/skulpt.js",
5+
"description": "Skulpt is a Javascript implementation of the Python programming language",
6+
"repository": {
7+
"type": "git",
8+
"url": "git://github.com/bnmnetp/skulpt.git"
9+
},
10+
"bugs": {
11+
"url": "https://github.com/bnmnetp/skulpt/issues"
12+
},
13+
"licenses": [
14+
{
15+
"type": "MIT",
16+
"url": "https://github.com/bnmnetp/skulpt/LICENSE"
17+
}
18+
],
19+
"dependencies": {
20+
},
21+
"ignore": [
22+
]
23+
}

0 commit comments

Comments
 (0)