-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"name": "state.js",
"module": "src/state.js",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/gulp test",
"cover": "nyc mocha",
"coverage": "nyc mocha && nyc report --reporter=text-lcov | coveralls"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mohitvirli/state.js.git"
},
"author": "Mohit Virli",
"license": "ISC",
"bugs": {
"url": "https://github.com/mohitvirli/state.js/issues"
},
"homepage": "https://github.com/mohitvirli/state.js#readme",
"devDependencies": {
"babel-core": "^5.8.25",
"chai": "^3.3.0",
"coveralls": "^3.0.0",
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-eslint": "^4.0.2",
"gulp-mocha": "^2.1.3",
"gulp-util": "^3.0.7",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.4.1",
"webpack": "^1.12.2"
},
"nyc": {
"require": [
"babel-core/register"
]
}
}