-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"name": "crop-rotate",
"version": "0.0.1",
"main": "lib/index.js",
"repository": "https://github.com/nmuldavin/CropRotate.git",
"author": "Noah Muldavin <nmuldavin@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npm-run-all --parallel test:watch example",
"clean": "rimraf lib dist",
"build-lib": "babel src -d lib",
"build-dist": "webpack",
"example": "webpack-dev-server --config example/webpack.config.js --content-base example/",
"lint": "eslint src",
"test": "nyc --reporter=lcov --reporter=text mocha --opts ./mocha.opts 'src/**/*.test.js'",
"test:watch": "npm run test -- --watch"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"chai": "^4.1.0",
"chai-almost": "^1.0.1",
"chai-as-promised": "^7.1.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.0",
"mocha-clean": "^1.0.0",
"mocha-jsdom": "^1.1.0",
"npm-run-all": "^4.0.2",
"nyc": "^11.1.0",
"rimraf": "^2.6.1",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"dependencies": {
"babel-polyfill": "^6.23.0"
}
}