-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
{
"name": "sequenz-js",
"version": "0.2.0",
"description": "super tiny, lodash-like lazy evaluation library, with cherry-picking!",
"main": "./sequenz.js",
"jsnext:main": "./src/index.js",
"scripts": {
"benchmark": "node ./benchmark/index.js",
"build:npm": "babel ./src -d ./",
"build:git": "rollup -c ./build/rollup.config.js && uglifyjs sequenz.js --source-map sequenz.min.js.map --screw-ie8 -o sequenz.min.js -m -c",
"clean": "del *.js *.map",
"doc": "jsdoc ./src -d ./docs",
"test": "karma start ./build/karma.config.js --single-run",
"test:watch": "karma start ./build/karma.config.js",
"coveralls": "cat ./coverage/lcovonly/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"lazy-evaluation",
"lazy",
"util",
"functional",
"performance"
],
"repository": {
"type": "git",
"url": "git+https://github.com/laysent/sequenz.git"
},
"author": "LaySent <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-istanbul": "^2.0.3",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2015-rollup": "^1.2.0",
"babelrc-rollup": "^3.0.0",
"benchmark": "^2.1.2",
"coveralls": "^2.11.15",
"jasmine": "^2.5.2",
"jsdoc": "^3.4.3",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-clear-screen-reporter": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lazy.js": "^0.4.2",
"lodash": "^4.17.2",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.6.1",
"uglify-js": "^2.7.5",
"webpack": "^1.13.3"
}
}