-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.02 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
{
"name": "worldviewjs",
"version": "1.0.0",
"description": "Pan/Zoom/Rotate anything!",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:umd": "webpack src/index.js dist/worldview.js && NODE_ENV=production webpack src/index.js dist/worldview.min.js",
"lint": "eslint src test",
"test": "NODE_ENV=test multi='spec=-' mocha",
"test:watch": "NODE_ENV=test multi='mocha-notifier-reporter=- dot=-' mocha --watch",
"test:cov": "multi='mocha-notifier-reporter=- dot=-' babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build && npm run build:umd",
"precommit": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/charlespwd/worldview.js.git"
},
"keywords": [
"pan zoom rotate svg transform DOM react canvas"
],
"author": "charlespwd",
"license": "MIT",
"bugs": {
"url": "https://github.com/charlespwd/worldviewjs/issues"
},
"homepage": "https://github.com/charlespwd/worldviewjs",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^3.5.0",
"chai-stats": "^0.3.0",
"eslint": "^3.2.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.6.0",
"husky": "^0.11.6",
"isparta": "^3.0.3",
"mocha": "^2.2.5",
"mocha-multi": "^0.9.0",
"mocha-notifier-reporter": "^0.1.2",
"mockery": "^1.7.0",
"rimraf": "^2.3.4",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"webpack": "^1.9.6",
"webpack-dev-server": "^1.8.2"
},
"dependencies": {
"invariant": "^2.0.0"
}
}