forked from codemix/fast.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.14 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
{
"name": "fast.js",
"version": "0.1.1",
"description": "Faster user-land reimplementations of native functions with extra helpers.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"jshint": "jshint ./",
"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",
"bench-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",
"install-v8": "sh ./ci/environments/v8/install.sh",
"bench-v8": "browserify ./bench/index.js | cat ./ci/v8-shim.js - > ./ci/environments/v8/bench.js; ./ci/environments/v8/v8-git-mirror/out/native/shell ./ci/environments/v8/bench.js",
"dist": "npm run dist-browser; npm run dist-minify; npm run dist-bench",
"dist-browser": "browserify -o dist/fast.js -s fast ./index.js",
"dist-minify": "uglifyjs -o ./dist/fast.min.js ./dist/fast.js --mangle --compress warnings=false",
"dist-bench": "browserify -o ./dist/bench.js ./bench/index.js"
},
"repository": {
"type": "git",
"url": "http://github.com/codemix/fast.js"
},
"keywords": [
"fast",
"native"
],
"author": "Charles Pick <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemix/fast.js/issues"
},
"homepage": "https://github.com/codemix/fast.js",
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"benchmark": "~1.0.0",
"browserify": "~4.1.11",
"expect.js": "~0.3.1",
"istanbul": "~0.2.11",
"jshint": "~2.5.1",
"lodash": "git://github.com/lodash/lodash.git#master",
"microtime": "^2.1.8",
"mocha": "~1.20.1",
"should": "~4.0.4",
"typescript": "^2.9.2",
"uglify-js": "~2.3.6",
"underscore": "git://github.com/jashkenas/underscore.git#master"
}
}