-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
33 lines (33 loc) · 1010 Bytes
/
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
{
"name": "lodash-move",
"version": "1.1.1",
"description": "Move an item in an array (proposed lodash feature #1701)",
"repository": "https://github.com/granteagon/move",
"main": "lib",
"scripts": {
"compile": "./node_modules/.bin/babel --presets es2015,stage-0 -d lib/ src/",
"test": "npm run compile; ./node_modules/.bin/mocha --reporter spec",
"prepublish": "npm run compile"
},
"author": "Grant Eagon",
"license": "MIT",
"dependencies": {
"lodash": "^4.6.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"eslint": "^2.2.0",
"expect": "^1.20.1",
"babel-core": "^5.4.7",
"babel-eslint": "^5.0.0",
"babel-plugin-react-transform": "^1.1.1",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"sinon": "^1.17.3"
}
}