-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 2.77 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
93
94
95
96
97
98
99
100
101
102
{
"name": "anny",
"version": "1.0.0",
"description": "An artificial neural network, yo!",
"main": "dist/anny.js",
"files": [
"dist",
"src"
],
"scripts": {
"babel-node": "babel-node",
"build": "gulp build",
"predeploy": "rm -rf tmp && mkdir tmp && cp -R app dist docs index.html tmp && npm run build",
"deploy": "gh-pages -d tmp",
"postdeploy": "rm -rf tmp",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"playground": "nodemon --exec npm run babel-node -- playground.js",
"start": "gulp",
"test": "cross-env NODE_ENV=test nyc mocha",
"test:watch": "npm run test -- -w"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true,
"all": true,
"sourceMap": false,
"instrument": false,
"check-coverage": false,
"report-dir": "./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/levithomason/anny.git"
},
"author": "Levi Thomason <me@levithomason.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/levithomason/anny/issues"
},
"homepage": "https://github.com/levithomason/anny#readme",
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.20.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.9",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-register": "^6.18.0",
"babel-runtime": "^6.20.0",
"chai": "^3.0.0",
"cross-env": "^3.1.3",
"del": "^1.2.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-defaults": "^9.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-lodash": "^2.2.4",
"eslint-plugin-react": "^6.8.0",
"gh-pages": "^0.12.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.3.1",
"gulp-babel": "^6.1.2",
"gulp-clean-css": "^2.3.0",
"gulp-concat": "^2.6.0",
"gulp-debug": "^2.0.1",
"gulp-eslint": "^1.0.0",
"gulp-help": "^1.6.0",
"gulp-less": "^3.0.3",
"gulp-load-plugins": "^0.10.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.0.0",
"gulp-sourcemaps": "^1.9.1",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"gulp-webserver": "^0.9.1",
"jsdoc": "jsdoc3/jsdoc",
"lodash": "^4.17.2",
"mocha": "^2.2.5",
"node-libs-browser": "^0.5.2",
"nyc": "^10.0.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.1",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0",
"vis": "^4.17.0",
"webpack": "^1.10.1"
}
}