forked from iddl/pprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 828 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
34
35
36
{
"name": "python-line-profiler",
"main": "./lib/pprofile.js",
"version": "0.3.2",
"description": "Run line-by-line profiles of python code",
"author": "Ivan David Di Lernia",
"license": "MIT",
"keywords": [
"profiling",
"python"
],
"activationCommands": {
"atom-workspace": "pprofile:toggle"
},
"repository": "https://github.com/iddl/pprofile",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"devDependencies": {
"eslint": "3.8.0",
"prettier": "1.3.1"
},
"dependencies": {
"d3-array": "1.2.0",
"d3-color": "1.0.3",
"d3-scale": "1.0.6",
"etch": "0.12.4",
"q": "1.5.0",
"pretty-ms": "2.1.0",
"underscore-plus": "1.6.6"
},
"scripts": {
"lint": "eslint lib/**.js*",
"fmt": "prettier --tab-width 4 --single-quote --write lib/**/*.js*"
}
}