-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.19 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
{
"name": "match-js",
"version": "0.0.0-semantic-release",
"description": "Patten matching via extractor objects in JavaScript",
"main": "./lib/match-js.min.js",
"scripts": {
"build": "webpack --progress --colors --mode=build",
"build:dev": "webpack --progress --colors --mode=dev",
"commit": "git-cz",
"dev": "webpack --progress --colors --watch --mode=dev",
"test:single": "npm run build:dev && npm run test:single:es5 && npm run test:single:es6 && npm run test:single:coffee",
"test:es5": "eslint ./test/*.spec.es5.js && mocha --colors --watch ./test/*.spec.es5.js",
"test:es6": "mocha --compilers js:babel-core/register --colors --watch ./test/*.spec.es6.js",
"test:coffee": "mocha --compilers coffee:coffee-script/register --colors --watch ./test/*.spec.coffee",
"test:single:es5": "eslint ./test/*.spec.es5.js && mocha --colors ./test/*.spec.es5.js",
"test:single:es6": "mocha --compilers js:babel-core/register --colors ./test/*.spec.es6.js",
"test:single:coffee": "mocha --compilers coffee:coffee-script/register --colors ./test/*.spec.coffee",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel": "^6.5.0",
"babel-core": "^6.11.0",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"coffee-script": "^1.10.0",
"commitizen": "^2.8.2",
"cz-conventional-changelog": "^1.1.6",
"eslint": "^3.1.1",
"mocha": "^2.5.3",
"mocha-webpack": "^0.5.0",
"semantic-release": "^4.3.5",
"semantic-release-cli": "^1.4.1",
"webpack": "^1.13.1",
"webpack-node-externals": "^1.2.0",
"yargs": "^4.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Jiansen/match-js.git"
},
"keywords": [
"pattern matching",
"extractor objects",
"library",
"universal",
"commonjs"
],
"author": "Jiansen HE",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jiansen/match-js/issues"
},
"homepage": "https://github.com/Jiansen/match-js",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}