-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
54
55
56
{
"name": "iterable-some",
"version": "1.0.1",
"description": "`Array.some` for iterables.",
"dependencies": {},
"scripts": {
"clean": "git reset && echo '/node_modules/' > .gitignore && git add .gitignore && git stash save --include-untracked --keep-index '`npm run clean` trash can' && git clean --force -d && git reset --hard && echo '\nclean: Uncommitted and ignored files have been moved to git’s stash. To restore them run `git stash pop --quiet; git checkout .gitignore`.'",
"coverage": "rm -rf coverage && npm run test:transpile && cd .es5 && istanbul cover test.js && mv coverage ..",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"develop": "nodangel --ignore node_modules --ignore coverage --exec 'npm run --silent test:lite'",
"prepublish": "npm run --silent clean && npm run transpile",
"test": "eslint . && npm run test:transpile && node .es5/test.js | tap-spec",
"test:lite": "babel-node --optional es7.functionBind test.js | tap-spec",
"test:transpile": "rm -rf .es5 && babel --loose es6.modules --optional es7.functionBind test.js module.js module/* --out-dir .es5",
"transpile": "babel --loose es6.modules --optional es7.functionBind module --out-dir .",
"view-coverage": "echo 'Generating coverage reports...'; npm run coverage >/dev/null && echo '...done.' && opn ./coverage/lcov-report/index.html >/dev/null"
},
"devDependencies": {
"babel": "5.8.20",
"babel-eslint": "4.0.5",
"coveralls": "2.11.3",
"es6-set": "0.1.1",
"eslint": "1.0.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "3.1.0",
"istanbul": "0.3.17",
"nodangel": "1.3.8",
"opn-cli": "1.0.0",
"tap-spec": "2.2.2",
"tape-catch": "1.0.4",
"this-is-truthy": "1.0.1"
},
"files": [
"/*.js",
"/module/",
"/test/",
"/Readme.md",
"/License.md"
],
"license": "MIT",
"keywords": [
"some",
"this",
"iterable",
"set",
"map",
"array",
"trine",
"bind"
],
"author": "Tomek Wiszniewski <t.wiszniewski@gmail.com>",
"repository": {
"type": "git",
"url": "git@github.com:tomekwi/iterable-some"
}
}