-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.18 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
{
"name": "molql",
"version": "0.1.0",
"description": "A molecular query language.",
"main": "",
"scripts": {
"build": "./node_modules/.bin/tsc",
"watch": "./node_modules/.bin/tsc -watch",
"docs": "node ./build/reference-implementation/molql/markdown-docs.js -print > ./docs/language-reference.md",
"test": "jasmine",
"app": "node_modules/.bin/webpack build/molql-explorer/index.js web/explorer.js",
"appmin": "./node_modules/.bin/uglifyjs web/explorer.js > web/explorer.min.js"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@types/codemirror": "0.0.43",
"@types/jasmine": "^2.5.54",
"@types/node": "^8.0.25",
"@types/parsimmon": "^1.3.0",
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/semver": "^5.4.0",
"jasmine": "^2.8.0",
"typescript": "^2.5.1",
"uglify-js": "^3.0.28",
"webpack": "^3.5.5"
},
"dependencies": {
"ciftools.js": "github:dsehnal/CIFTools.js#34cd913",
"codemirror": "^5.29.0",
"litemol": "github:dsehnal/LiteMol#ce5818d",
"parsimmon": "^1.6.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-markdown": "^2.5.0",
"semver": "^5.4.1"
}
}