-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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": "thegamma-script",
"version": "0.1.26",
"description": "The Gamma project",
"scripts": {
"pretest": "fable tests",
"test": "mocha dist/tests/thegamma-tests",
"justtest": "mocha dist/tests/thegamma-tests",
"prepublish": "npm run build",
"build": "fable --target es2015 src && fable --target commonjs src && fable --target min src && fable --target dev src",
"watch": "fable -w --target dev src"
},
"author": "Tomas Petricek",
"license": "MIT",
"dependencies": {
"babel-standalone": "^6.18.1",
"fable-core": "^0.7.26",
"monaco-editor": "^0.7.0",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.15.0",
"babel-runtime": "^6.18.0",
"fable-compiler": "^0.7.42",
"fable-plugins-nunit": "^0.7.3",
"mocha": "^3.1.2",
"pmm": "^1.3.1",
"rollup-plugin-commonjs": "^5.0.5",
"rollup-plugin-uglify": "^1.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-gamma/thegamma-script.git"
},
"keywords": [
"data",
"visualization",
"storytelling"
],
"bugs": {
"url": "https://github.com/the-gamma/thegamma-script/issues"
},
"homepage": "http://thegamma.net",
"main": "./dist/commonjs/main.js",
"module": "./dist/es2015/main/main.js",
"jsnext:main": "./dist/es2015/main/main.js"
}