-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "atom-cursor",
"version": "1.0.2",
"description": "An immutable data container",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf ./lib",
"dev": "cross-env NODE_ENV=development rollup -c -o lib/index.js",
"build": "cross-env NODE_ENV=production rollup -c -o lib/index.js",
"test": "babel-node --presets env -- ./node_modules/.bin/jasmine",
"lint": "eslint .",
"prepublishOnly": "npm run clean && npm run test && npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minifast/atom-cursor.git"
},
"keywords": [
"atom",
"cursor",
"observer"
],
"author": "Ministry of Velocity LLC",
"license": "MIT",
"bugs": {
"url": "https://github.com/minifast/atom-cursor/issues"
},
"homepage": "https://github.com/minifast/atom-cursor#readme",
"dependencies": {
"fast-deep-equal": "^2.0.1",
"immutability-helper": "^2.7.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "8.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-module-resolver": "3.1.1",
"babel-preset-env": "^1.7.0",
"cross-env": "5.1.4",
"eslint": "4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"fs-file-tree": "1.0.6",
"jasmine": "^3.1.0",
"rimraf": "2.6.2",
"rollup": "0.58.1",
"rollup-plugin-babel": "3.0.3",
"rollup-plugin-commonjs": "9.1.0",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-replace": "2.0.0",
"rollup-plugin-uglify": "3.0.0"
}
}