-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 882 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 882 Bytes
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
{
"name": "timevirtualizer",
"version": "0.0.6",
"author": "Eugene Batalov <eabatalov89@gmail.com>",
"contributors": [{
"name": "Alexandr Yanenko",
"email": "yanenkoalexandr@gmail.com"
}],
"description": "Allows to manually manipulate time flow inside JavaScript program",
"main": "./lib/TimeVirtualizer.js",
"repository": {
"type": "git",
"url": "https://github.com/yanenkoa/jstimevirtualizer.git"
},
"license": "MIT",
"devDependencies": {
"karma": "^0.13.8",
"karma-browserify": "^4.3.0",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^0.3.6"
},
"dependencies": {
"browserify": "^11.0.0",
"webworkify": "^1.0.2"
},
"scripts": {
"build": "browserify lib/TimeVirtualizer.js -o dist/assembledTimeVirtualizer.js",
"build-demo": "browserify test/example/snake.js -o test/example/browserified.js"
}
}