forked from nan-academy/js-training
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 670 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 670 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"private": true,
"index": "primitives.js",
"tests": [
"primitives",
"escape-str",
"arr",
"obj",
"circular",
"get-length",
"get-first",
"get-last",
"id",
"concat-str",
"get",
"add",
"sub",
"abs",
"max",
"min",
"is-positive",
"sign",
"same-sign",
"repeat",
"sentence",
"words",
"whisper",
"yell",
"cut",
"keep",
"capitalize",
"jaden-case",
"total",
"multiply",
"multiply-recursive"
],
"scripts": {
"update": "git reset && git stash && git pull https://github.com/nan-ci/js.git master && git stash pop",
"test": "./tester"
}
}