-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "swell",
"version": "1.1.0",
"description": "swell williams entry-level language",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"browserify": "^16.2.3",
"codemirror": "^5.48.0",
"diff": "^4.0.1",
"pants": "github:williams-cs/pants#1.2",
"space-lift": "^0.8.7",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/clone": "^0.1.30",
"@types/codemirror": "0.0.70",
"@types/diff": "^3.5.2",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"clone": "^2.1.2",
"csv-parse": "^4.4.3",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ts-node": "^8.2.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.1"
},
"scripts": {
"test": "mocha",
"test-coverage": "nyc --reporter=text mocha"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"test/",
"coverage/",
"lib/Ignore for now/",
"lib/*.js",
"dist/",
"ui_modules"
],
"reporter": [
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/williams-cs/swell.git"
},
"keywords": [
"dmlanguage"
],
"author": "Julia Tucher, Alex Taylor, Dzung Pham, Emmie Hine, Quan Do, Kiersten Campbell, and Dan Barowy",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/williams-cs/swell/issues"
},
"homepage": "https://github.com/williams-cs/swell#readme"
}