This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 3.3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "tape-css",
"version": "1.0.2-beta",
"description": "CSS unit testing. Lightning-fast. tape-style.",
"dependencies": {
"array-find": "^1.0.0",
"array-from": "^2.0.2",
"insert-css": "tomekwi/insert-css#680e16ed19f2ee05af528d1b1012d1aa43f6ac49",
"object-assign": "^4.0.1",
"this-drop": "^1.0.1"
},
"scripts": {
"browser-test": "npm run --silent browser-test:hint && concurrent 'npm run browser-test:watch' 'npm run browser-test:serve' 'npm run browser-test:open'",
"browser-test:hint": "echo \\n'Hold on a sec! We’re serving a freshly-baked bundle of tests at http://localhost:9036 . We’ll dish it up to your browser as soon as it’s ready!'\\n",
"browser-test:serve": "mkdirp .webpack && cd .webpack && cpy ../test/runner.html . --rename=index.html && hostr --port=9036",
"browser-test:open": "opn http://localhost:9036",
"browser-test:watch": "webpack --watch",
"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",
"readme": "dox --raw < module/index.js | doxie --render --inject",
"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 --optional es7.functionBind test.js module/*.js --out-dir .es5",
"transpile": "babel --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.23",
"babel-core": "5.8.24",
"babel-eslint": "4.1.2",
"babel-loader": "5.3.2",
"blank-module": "0.0.1",
"clone": "1.0.2",
"concurrently": "0.1.1",
"coveralls": "2.11.4",
"cpy": "3.4.1",
"dox": "0.8.0",
"doxie": "0.2.3",
"doxie.inject": "0.1.1",
"doxie.render": "0.3.2",
"eslint": "1.4.1",
"eslint-config-airbnb": "0.0.8",
"eslint-plugin-react": "3.3.2",
"hostr": "2.2.8",
"istanbul": "0.3.20",
"jsdom": "6.5.0",
"mkdirp": "0.5.1",
"nodangel": "1.3.8",
"opn-cli": "1.0.0",
"tap-dev-tool": "1.3.0",
"tap-spec": "2.2.2",
"tape": "4.2.0",
"tape-catch": "1.0.4",
"webpack": "1.12.2"
},
"files": [
"/*.js",
"/module/",
"/test/",
"/Readme.md",
"/License.md"
],
"license": "MIT",
"keywords": [],
"author": "© 2015 Studio B12 GmbH (http://studio-b12.de)",
"contributors": [
"Tomek Wiszniewski <[email protected]>"
],
"repository": {
"type": "git",
"url": "[email protected]:studio-b12/tape-css"
},
"homepage": "https://github.com/studio-b12/tape-css#/"
}