-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "rijs.backpressure",
"version": "1.0.1",
"main": "dist",
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"repository": {
"type": "git",
"url": "git://github.com/rijs/backpressure.git"
},
"scripts": {
"ignore": "find ./dist -type f -exec sed -i -E \"s/(function _interopRequire)/\\/* istanbul ignore next *\\/\\n\\1/g\" {} ';'",
"babel": "babel src -d dist",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run babel && npm run ignore",
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- -R spec --colors",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage --colors",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec --colors",
"test-popper": "popper",
"version": "npm run build && git add -A",
"postversion": "git push && git push --tags"
},
"license": "pemrouz.mit-license.org",
"devDependencies": {
"babel-cli": "*",
"babel-preset-es2015": "*",
"browserify": "*",
"browserenv": "*",
"chai": "*",
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"mockery": "^1.4.0",
"popper": "*",
"rijs.components": "*",
"rijs.core": "*",
"rijs.css": "*",
"rijs.data": "*",
"rijs.fn": "*",
"rijs.serve": "*",
"rijs.shadow": "*",
"rijs.sync": "*",
"uglify-js": "*"
},
"dependencies": {
"utilise": "*"
}
}