This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.6 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.6 KB
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
{
"name": "underscore-plus",
"version": "1.7.0",
"description": "Underscore plus additional utilities",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/underscore-plus/raw/master/LICENSE.md"
}
],
"main": "./lib/underscore-plus.js",
"scripts": {
"clean": "shx rm -rf lib",
"test": "jasmine-focused --captureExceptions --coffee spec",
"lint": "coffeelint spec/*.coffee",
"bower": "shx mkdir -p dist && shx cp -r lib/*.js ./dist",
"babel": "npm run clean && shx cp -r src lib && cross-env NODE_ENV=development cross-env BABEL_ENV=development babel lib --out-dir lib && shx rm -f lib/*.mjs",
"build": "npm run babel",
"prepare": "npm run clean && npm run build && npm run bower"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/underscore-plus.git"
},
"bugs": {
"url": "https://github.com/atom/underscore-plus/issues"
},
"keywords": [
"underscore"
],
"dependencies": {
"underscore": "^1.10.2"
},
"devDependencies": {
"@types/underscore": "^1.10.3",
"jasmine-focused": "1.x",
"coffeelint": "^2.1.0",
"@babel/cli": "7.10.3",
"@babel/core": "7.10.3",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"shx": "^0.3.2",
"cross-env": "^7.0.2"
},
"coffeelintConfig": {
"no_empty_param_list": {
"level": "error"
},
"max_line_length": {
"level": "ignore"
}
}
}