-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.01 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
{
"name": "three-snapshot-serializer",
"version": "1.1.0",
"description": "Jest snapshot serializer for THREE objects",
"homepage": "https://github.com/dbkaplun/three-snapshot-serializer",
"repository": "https://github.com/dbkaplun/three-snapshot-serializer",
"bugs": "https://github.com/dbkaplun/three-snapshot-serializer/issues",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib/ && babel -d lib/ src/",
"jest": "jest",
"eslint": "eslint .",
"test": "npm run eslint && npm run jest",
"preversion": "npm run build && git add -A lib/ && npm test"
},
"dependencies": {
"three": "^0.92.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.2",
"babel-jest": "^22.4.3",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "^22.4.3"
}
}