forked from nvie/itertools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.18 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
61
62
63
64
{
"name": "itertools",
"version": "v1.1.1",
"description": "A JavaScript port of Python's awesome itertools standard library",
"main": "lib/index.js",
"keywords": [
"itertool",
"itertools",
"node-itertools"
],
"files": [
"lib/"
],
"scripts": {
"build": "yarn run build:clean && yarn run build:lib && yarn run build:flow",
"build:clean": "rimraf lib",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"build:lib": "babel -d lib src --ignore '**/__tests__/**'",
"check": "yarn run check:eslint && yarn run check:prettier && yarn run check:import-sort",
"check:eslint": "eslint --report-unused-disable-directives src",
"check:import-sort": "import-sort --list-different 'src/**/*.js'",
"check:prettier": "prettier --list-different 'src/**/*.js'",
"fix": "yarn run fix:prettier && yarn run fix:import-sort",
"fix:import-sort": "import-sort --write 'src/**/*.js'",
"fix:prettier": "prettier --write 'src/**/*.js'",
"prepublish": "in-publish && yarn run actually-prepublish || not-in-publish",
"actually-prepublish": "yarn build:clean && yarn run test && yarn run build",
"test": "yarn run test:flow && yarn run test:jest && yarn run check",
"test:flow": "flow check",
"test:jest": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nvie/itertools.js.git"
},
"author": "Vincent Driessen",
"license": "MIT",
"bugs": {
"url": "https://github.com/nvie/itertools.js/issues"
},
"homepage": "https://github.com/nvie/itertools.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"eslint-plugin-flowtype": "^2.41.0",
"flow-bin": "^0.63.1",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.2.3",
"import-sort-cli": "^4.2.0",
"import-sort-parser-babylon": "^4.2.0",
"import-sort-style-module": "^4.2.0",
"in-publish": "^2.0.0",
"jest": "^22.0.4",
"jest-cli": "^22.0.4",
"prettier": "^1.9.2",
"rimraf": "^2.6.2"
},
"dependencies": {}
}