-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "evan-lang",
"version": "0.1.0",
"description": "A vaguely Lispy language in the context of JavaScript",
"repository": {
"type": "git",
"url": "https://github.com/dslmeinte/evan-lang.git"
},
"bin": {
"evan": "lib/bin/cmd.js"
},
"main": "lib/index.js",
"typings": "lib/index",
"scripts": {
"test": "npm run build && tape lib/test/*.js | tap-diff",
"test-watch": "npm run build && concurrently --raw \"npm run watch\" \"tape-watch lib/test/*.js -p tap-diff\" --kill-others",
"karma": "karma start --log-level error",
"karma-watch": "WATCH=true karma start --log-level error",
"clean": "rm -fr lib && rm -f public/bundle.js",
"build": "npm run clean && tsc",
"prepublish": "npm run test && npm run build",
"watch": "npm run clean && tsc --watch",
"build-ide": "NODE_ENV=production browserify -p tsify -r ud/noop:ud src/ide/main.tsx | uglifyjs -c > public/bundle.js",
"watch-ide": "watchify src/ide/main.tsx -p browserify-hmr -p tsify -o public/bundle.js -dv",
"ide": "npm run clean && concurrently --raw \"ecstatic -p 8070 public\" \"npm run watch-ide\" --kill-others"
},
"contributors": [
"Meinte Boersma <[email protected]> (http://www.dslconsultancy.com/)",
"Onur Gunduz <[email protected]> (http://onurgunduz.com/)"
],
"license": "MIT",
"dependencies": {
"indent-string": "^3.0.0",
"is-integer": "^1.0.6",
"minimist": "^1.2.0",
"react": "^15.3.2"
},
"devDependencies": {
"@types/enzyme": "^2.7.1",
"@types/minimist": "^1.2.0",
"@types/node": "^6.0.52",
"@types/react": "^0.14.55",
"@types/react-dom": "^0.14.19",
"@types/tape": "^4.2.28",
"babel-preset-airbnb": "^2.1.1",
"babelify": "^7.3.0",
"brfs": "^1.4.3",
"browserify": "^13.3.0",
"browserify-hmr": "^0.3.5",
"concurrently": "^3.1.0",
"debug": "^2.6.0",
"ecstatic": "^2.1.0",
"enzyme": "^2.7.0",
"glob": "^7.1.1",
"insert-css": "^2.0.0",
"insert-sass": "^0.1.0",
"jsdom": "^9.9.1",
"karma": "^1.4.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jsdom-launcher": "^5.0.0",
"karma-tap": "^3.1.1",
"karma-tap-pretty-reporter": "^3.0.5",
"mobx": "^2.6.1",
"mobx-react": "^3.5.6",
"ndjson": "^1.5.0",
"node-sass": "^4.3.0",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.3.2",
"split2": "^2.1.1",
"tap-diff": "^0.1.1",
"tape": "^4.6.3",
"tape-watch": "^2.2.4",
"tsify": "^3.0.0",
"typescript": "^2.1.4",
"ud": "^3.1.0",
"uglify-js": "mishoo/UglifyJS2#harmony",
"watchify": "^3.8.0"
},
"browserify": {
"transform": [
[
"insert-sass",
{
"includePaths": [
"src/ide/editor/",
"src/ide/",
"src/"
]
}
]
]
}
}