-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "@statetree/diff",
"version": "3.0.2",
"description": "Utility library to find diff and comparison value for sorting",
"main": "lib/diff.js",
"scripts": {
"start": "webpack-dev-server --open --mode development",
"lint": "eslint ./src --ext .js --cache --fix --ext .jsx --cache --fix",
"test": "./node_modules/.bin/mocha test --recursive --timeout 0 --require ./node_modules/@babel/register --require test/helpers/*.js -R spec",
"coverage": "NODE_ENV=coverage ./node_modules/.bin/nyc npm run test",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"doc": "./node_modules/.bin/esdoc open ./docs/index.html",
"prebuild": "rimraf lib && rimraf build",
"build": "./node_modules/.bin/webpack --mode production ",
"postbuild": "node scripts/postbuild.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StateTree/diff.git"
},
"author": "Sanjay Krishna Anbalagan",
"license": "MIT",
"bugs": {
"url": "https://github.com/StateTree/diff/issues"
},
"homepage": "https://github.com/StateTree/diff#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.0.1",
"chai": "^4.2.0",
"co-exec": "^1.1.0",
"codecov": "^3.1.0",
"esdoc": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.6.1",
"eslint-loader": "^2.1.1",
"fs-extra": "^7.0.0",
"ghooks": "^2.0.4",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"rimraf": "^2.6.2",
"sinon": "^6.3.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"files": [
"lib"
],
"config": {
"ghooks": {
"pre-commit": "npm run test"
}
},
"publishConfig": {
"access": "public"
}
}