-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.17 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
{
"name": "fountain-js",
"version": "1.2.4",
"description": "A simple parser for Fountain, a markup language for formatting screenplays.",
"main": "dist/index.js",
"module": "dist.esm/index.js",
"scripts": {
"clean": "rimraf dist dist.esm",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b",
"build:esm": "tsc -b ./tsconfig.esm.json",
"test": "jasmine --config=jasmine.json"
},
"keywords": [
"Typescript",
"Javascript",
"Fountain",
"markdown",
"parser",
"screenwriting",
"screenplays",
"filmmaking"
],
"homepage": "https://github.com/jonnygreenwald/fountain-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jonnygreenwald/fountain-js.git"
},
"bugs": {
"url": "https://github.com/jonnygreenwald/fountain-js/issues"
},
"author": "Jonny Greenwald",
"contributors": [
"Matt Daly",
"Jonny Greenwald",
"Nathan Hoad",
"Chandler Anderson"
],
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^5.1.2",
"jasmine": "^5.1.0",
"rimraf": "^5.0.5",
"ts-node": "^10.7.0",
"typescript": "^5.2.2"
}
}