Skip to content

Commit 5c7102c

Browse files
committedJan 9, 2020
Initial commit.
0 parents  commit 5c7102c

8 files changed

+55
-0
lines changed
 

‎.ep_initialized

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
done

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

‎.npmignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.git*
2+
docs/
3+
examples/
4+
support/
5+
test/
6+
testing.js
7+
.DS_Store
8+
.ep_initialized

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# ep_script_characters
2+
Etherpad plugin to handle Characters on scripts. Needs [ep_script_elements](https://github.com/storytouch/ep_script_elements) to work properly.

‎ep.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"parts": [
3+
{
4+
"name": "script_characters",
5+
"client_hooks": {},
6+
"hooks": {}
7+
}
8+
]
9+
}

‎package-lock.json

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"description": "Adds support for identifying and managing script Characters.",
3+
"name": "ep_script_characters",
4+
"version": "0.0.1",
5+
"author": {
6+
"name": "Guilherme Goncalves",
7+
"email": "inacio.guilherme@gmail.com"
8+
},
9+
"contributors": [
10+
{
11+
"name": "Guilherme Goncalves",
12+
"email": "inacio.guilherme@gmail.com"
13+
},
14+
{
15+
"name": "Joas Souza",
16+
"email": "joassouzasantos@gmail.com"
17+
}
18+
],
19+
"dependencies": {},
20+
"devDependencies": {},
21+
"engines": {
22+
"node": "*"
23+
},
24+
"homepage": "https://github.com/storytouch/ep_script_characters",
25+
"repository": {
26+
"type": "git",
27+
"url": "git://github.com/storytouch/ep_script_characters.git"
28+
}
29+
}

‎static/js/index.js

Whitespace-only changes.

0 commit comments

Comments
 (0)
Please sign in to comment.