-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.46 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
{
"name": "rijs.db",
"version": "0.1.7",
"main": "dist",
"browser": "./node_modules/utilise/identity.js",
"author": "Pedram Emrouznejad (https://github.com/pemrouz)",
"repository": {
"type": "git",
"url": "git://github.com/rijs/db.git"
},
"scripts": {
"ignore:1": "find ./dist -type f -exec sed -i \"s/function _interopRequire/\\/* istanbul ignore next *\\/\\nfunction _interopRequire/g\" {} ;",
"ignore:2": "find ./dist -type f -exec sed -i \"s/var _ref = arguments.length/\\/* istanbul ignore next *\\/\\nvar _ref = arguments.length/g\" {} ;",
"babel": "babel src -d dist",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && npm run babel && npm run ignore:1 && npm run ignore:2",
"test": "istanbul test ./node_modules/mocha/bin/_mocha --report html -- -R spec",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && rm -rf ./coverage",
"cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -R spec",
"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": "*",
"chai": "*",
"popper": "*",
"coveralls": "*",
"istanbul": "*",
"mocha": "*",
"mocha-lcov-reporter": "*",
"uglify-js": "*",
"rijs.core": "*",
"rijs.data": "*"
},
"dependencies": {
"utilise": "*"
}
}