-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.24 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
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
{
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"core-js": "^2.2.1",
"events": "^1.1.0",
"history": "^1.13.1",
"keymirror": "^0.1.1",
"modernizr": "^3.2.0",
"npm": "^3.8.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-router": "^1.0.0",
"rx": "^4.1.0"
},
"devDependencies": {
"babel-core": "^6.1.21",
"babel-eslint": "^4.1.5",
"babel-jest": "^6.0.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"eslint": "^1.9.0",
"eslint-plugin-babel": "^2.1.1",
"eslint-plugin-react": "^3.8.0",
"grunt": "^0.4.5",
"grunt-babel": "^6.0.0",
"grunt-browser-sync": "^2.2.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-less": "^1.1.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-eslint": "^17.3.1",
"grunt-jest": "^0.2.0",
"grunt-jsdoc": "^1.0.0",
"grunt-plato": "^1.2.1",
"grunt-ts": "^5.2.0",
"grunt-webpack": "^1.0.11",
"jest-cli": "^0.8.0",
"less": "^2.5.3",
"less-plugin-autoprefix": "^1.5.1",
"less-plugin-clean-css": "^1.5.1",
"load-grunt-tasks": "^3.3.0",
"path": "^0.12.7",
"react-addons-test-utils": "^0.14.3",
"webpack": "^1.12.6",
"webpack-dev-server": "^1.12.1"
},
"name": "photo-editor",
"version": "1.0.0",
"description": "JavaScript Photo Editor Widget",
"main": "Gruntfile.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils",
"<rootDir>/node_modules/fbjs"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testFileExtensions": [
"js",
"jsx"
],
"moduleFileExtensions": [
"js",
"json",
"jsx"
]
},
"repository": {
"type": "git",
"url": "git://localhost/repository.git"
},
"author": "John Need",
"license": "Beerware"
}