-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.92 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.92 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "schq",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/jamesrhaley/schQ"
},
"description": "rx animation scheduler",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename schQ.js",
"build:umd.min": "webpack --output-filename schQ.min.js -p",
"lint": "eslint src",
"test": "NODE_ENV=test nyc mocha",
"watch:test": "mocha --compilers js:babel-register --watch",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"release": "semantic-release pre && npm publish && semantic-release post",
"validate": "npm-run-all --parallel test lint build"
},
"keywords": [
"rx"
],
"files": [
"dist"
],
"author": "James Haley",
"license": "MIT",
"dependencies": {
"rx": "^4.1.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-loader": "6.2.9",
"babel-plugin-istanbul": "3.0.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-register": "6.18.0",
"chai": "3.5.0",
"codecov": "1.0.1",
"commitizen": "2.8.6",
"cross-env": "3.1.3",
"cz-conventional-changelog": "1.2.0",
"eslint": "3.11.1",
"ghooks": "1.3.2",
"mocha": "3.2.0",
"npm-run-all": "3.1.2",
"nyc": "10.0.0",
"rimraf": "2.5.4",
"semantic-release": "6.3.2",
"validate-commit-msg": "2.8.2",
"webpack": "1.14.0"
},
"nyc": {
"all": true,
"check-coverage": true,
"branches": 98,
"functions": 98,
"lines": 100,
"statements": 100,
"reporter": [
"text",
"lcov"
],
"instrument": false,
"sourceMap": false,
"require": [
"babel-register"
],
"extension": [
".es6"
],
"include": [
"src"
]
}
}