-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.62 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "mark2",
"version": "0.0.0-development",
"description": "Scheduling events in animation and music",
"main": "dist/index.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src",
"build:umd": "webpack --output-filename mark2.js",
"build:umd.min": "webpack --output-filename mark2.min.js -p",
"check-coverage": "nyc check-coverage --statements 50 --branches 40 --functions 40 --lines 50",
"commit": "git-cz",
"cover": "nyc npm t",
"dev": "webpack-dev-server --port 3000 --devtool eval --progress --colors --hot --content-base dist",
"prebuild": "rimraf dist",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"tdd": "npm test -- --watch",
"test": "mocha ./src --require babel-register --require ./test/helpers.js --require ./test/dom.js --recursive",
"test:single": "nyc cover -x *.spec.js _mocha -- -R spec ./src",
"watch:test": "npm t -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/minnam/mark2.git"
},
"keywords": [
"animation",
"event",
"music",
"scheduling",
"sequence",
"sequencer",
"timing"
],
"files": [
"dist",
"README.md"
],
"author": "Min Nam <hi@minnam.io> (http://minnam.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/minnam/mark2/issues"
},
"homepage": "https://github.com/minnam/mark2#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.0.1",
"babel-loader": "7.1.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"chai": "4.1.2",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"enzyme": "3.1.0",
"eslint": "4.10.0",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.4.0",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"jsdom": "11.3.0",
"json-loader": "0.5.7",
"mocha": "4.0.1",
"npm-run-all": "4.1.1",
"nyc": "11.3.0",
"react-addons-test-utils": "15.6.2",
"rimraf": "2.6.2",
"semantic-release": "^8.2.0",
"sinon": "4.0.2",
"webpack": "3.8.1"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}