-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lib-rrbit",
"version": "2.0.13-beta",
"description": "core operations for use on relaxed radix balanced vectors",
"main": "lib/rrbit.js",
"module": "src/index.js",
"repository": "https://github.com/team-rrbit/lib-rrbit",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-0": "^6.22.0",
"benchmark": "^2.1.3",
"buble": "^0.15.2",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"fantasy-check": "^0.3.2",
"flow-bin": "^0.41.0",
"immutable": "^3.8.1",
"immutable-array-methods": "^1.5.0",
"jest": "^19.0.2",
"jsonfile": "^2.4.0",
"lodash": "^4.17.4",
"mocha": "^3.2.0",
"mori": "^0.3.2",
"prettier": "^1.2.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-cleanup": "^1.0.0",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^3.0.0",
"yargs": "^7.1.0"
},
"scripts": {
"test": "BABEL_ENV=test ./node_modules/.bin/jest test/*.test.js",
"test:push": "BABEL_ENV=test ./node_modules/.bin/jest test/append.test.js",
"test:drop": "BABEL_ENV=test ./node_modules/.bin/jest test/drop.test.js",
"test:take": "BABEL_ENV=test ./node_modules/.bin/jest test/take.test.js",
"test:iter": "BABEL_ENV=test ./node_modules/.bin/jest test/iteration.test.js",
"test:pre": "BABEL_ENV=test ./node_modules/.bin/jest test/prepend.test.js",
"test:set": "BABEL_ENV=test ./node_modules/.bin/jest test/update.test.js",
"bench:push": "BABEL_ENV=prod node project/bench.js --file=perf/append.perf.js",
"bench:pre": "BABEL_ENV=prod node project/bench.js --file=perf/prepend.perf.js",
"bench:iter": "BABEL_ENV=prod node project/bench.js --file=perf/iterator.perf.js",
"bench:conc": "BABEL_ENV=prod node project/bench.js --file=perf/appendAll.perf.js",
"bench:drop": "BABEL_ENV=prod node project/bench.js --file=perf/drop.perf.js",
"bench:take": "BABEL_ENV=prod node project/bench.js --file=perf/take.perf.js",
"build": "BABEL_ENV=prod ./node_modules/.bin/rollup --config rollup.prod.js",
"format": "./node_modules/.bin/prettier --single-quote --semi --write \"{test,__tests__,perf}/**/*.js\""
}
}