-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 811 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 811 Bytes
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
{
"name": "sam-devtools",
"version": "0.0.3",
"description": "Devtools for the SAM-JS framework",
"main": "./lib/index.js",
"scripts": {
"build": "npm run clean && ./node_modules/.bin/babel src/ --out-dir lib/",
"watch": "npm run build -- --watch",
"clean": "mkdir -p lib && rm -f lib/*",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build"
},
"author": "Gunar C. Gessner <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:sam-js/sam-devtools.git"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.5.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-stage-0": "^6.3.13",
"deep-equal": "^1.0.1"
}
}