-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.79 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.79 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
{
"name": "react-interval-formatter",
"version": "0.0.7",
"description": "Update a value in realtime",
"main": "lib/IntervalFormatter.js",
"repository": {
"url": "scup/react-interval-formatter",
"type": "git"
},
"author": "Alberto Silva <alberto.silva@sprinklr.com>",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test NODE_PATH=./src mocha src/**/*.test.js -c --reporter min --compilers js:babel-register --require tests/support.js",
"test:watch": "npm test -- --watch",
"coverage": "nyc npm test",
"lint": "standard \"src/*.js\" \"test/support.js\"",
"lint:watch": "watch -p \"src/**/*.js\" -c \"npm run lint\"",
"build": "babel --ignore *.test.js -d lib src",
"prepublish": "npm run build"
},
"nyc": {
"branches": 95,
"check-coverage": true,
"functions": 95,
"lines": 95,
"statements": 95,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"node_modules/**/*",
"src/**/*.test.js",
"tests/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"standard": {
"globals": [
"describe",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
},
"dependencies": {
"lodash.omit": "^4.5.0",
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"enzyme": "^2.6.0",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"nyc": "^10.0.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.4.1",
"sinon": "^1.17.6",
"standard": "^8.6.0",
"watch-cli": "^0.2.1"
}
}