forked from Rich-Harris/sorcery
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "sorcery",
"description": "Resolve a chain of sourcemaps back to the original source",
"version": "0.6.3",
"author": "Rich Harris",
"repository": "https://github.com/Rich-Harris/sorcery",
"main": "dist/sorcery.js",
"jsnext:main": "src/index.js",
"license": "MIT",
"dependencies": {
"buffer-crc32": "^0.2.5",
"minimist": "^1.1.0",
"sander": "^0.2.2",
"vlq": "^0.2.1"
},
"devDependencies": {
"babel": "^5.1.10",
"browserify": "^9.0.8",
"coffee-script": "^1.9.2",
"esperanto": "^0.6.29",
"gobble": "^0.10.1",
"gobble-babel": "^5.0.0",
"gobble-cli": "^0.4.2",
"gobble-rollup": "^0.3.0",
"less": "^2.5.0",
"mocha": "^2.1.0",
"promise-map-series": "^0.2.1",
"source-map": "^0.1.40",
"source-map-support": "^0.2.10",
"uglify-js": "^2.4.20"
},
"bin": {
"sorcery": "bin/index.js"
},
"scripts": {
"build": "gobble build -f dist",
"pretest": "npm run build",
"prepare-tests": "node test/samples/prepare-tests.js",
"test": "mocha",
"prepublish": "npm test"
},
"files": [
"src/",
"dist/",
"bin/",
"README.md"
]
}