forked from codemix/fast.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.35 KB
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
{
"name": "fast.js",
"version": "0.0.1",
"description": "Faster user-land reimplementations of native functions with extra helpers.",
"main": "lib/index.js",
"scripts": {
"jshint": "jshint ./lib",
"pretest": "npm run jshint",
"test": "mocha",
"bench": "node ./bench/index.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"install-sm": "wget http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/jsshell-linux-x86_64.zip -O ./ci/environments/sm/sm.zip; unzip -o -d ./ci/environments/sm ./ci/environments/sm/sm.zip",
"sm": "browserify ./bench/index.js | cat ./ci/sm-shim.js - > ./ci/environments/sm/bench.js; ./ci/environments/sm/js -f ./ci/environments/sm/bench.js"
},
"repository": {
"type": "git",
"url": "http://github.com/codemix/fast.js"
},
"keywords": [
"fast",
"native"
],
"author": "Charles Pick <charles@codemix.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/fast.js/issues"
},
"homepage": "https://github.com/codemix/fast.js",
"devDependencies": {
"expect.js": "~0.3.1",
"should": "~4.0.4",
"mocha": "~1.20.1",
"benchmark": "~1.0.0",
"microtime": "~0.6.0",
"istanbul": "~0.2.11",
"jshint": "~2.5.1",
"underscore": "^1.6.0",
"lodash": "^2.4.1",
"browserify": "~4.1.11"
}
}